
临时邮箱 API 创建收件箱并接收邮件
自动化注册、验证邮箱等端到端测试流程。兼容 Playwright、Cypress 及其他测试框架,轻松测试密码重置、OTP 流程等。提供 SDK。
* 免费至 2025 年 9 月 1 日,无需信用卡。

3 分钟内开始测试

为自动化测试而生
Tigrmail 专为测试场景打造 —— 不用于营销或事务性邮件。这意味着更高的速率限制、更低的价格,以及更简洁的 专为测试设计的 API。

支持端到端验证流程
轻松自动化注册、重置密码等流程。无需轮询脚本或易碎的正则提取 —— 直接获取邮件、提取链接或验证码。

精准定位所需邮件
可按发件人或主题筛选邮件,避免因收件箱噪音导致测试不稳定。

为开发者与测试人员设计
REST API、极简配置、清晰文档。与 Playwright、Cypress、Selenium、Postman 等工具完美兼容。专注实用,无多余功能。

安全保障
我们非常重视安全,采用安全编码规范,托管在可信的云服务商上,传输与存储过程均进行加密。仅保存运行服务所必需的数据,您也可随时申请删除数据。员工访问权限遵循最小权限原则。
如何使用?
下面是一个在测试中使用 Tigrmail 的简单示例。想看一个完整、可运行的 Playwright 示例,请查看我们的GitHub 上的在线演示。
// Step 1: Import the library. import { Tigrmail } from "tigrmail"; // Step 2: Get API token at https://console.tigrmail.com and paste it here. const tigr = new Tigrmail({ token: "your-token-from-the-dashboard", }); // Step 3: Generate an inbox, this will be your unique email address. // It's okay to create a new email address (inbox) for each new test run. const emailAddress: string = await tigr.createEmailAddress(); // Step 4: Use the inbox (e.g. sign up for a service). signUpInMyApp({ emailAddress }); // Step 5: Poll for the next message. const message = await tigr.pollNextMessage({ emailAddress }); // Step 6: Grab the verification link or code. // For this example, we expect the subject to be "Verification Code: 123456". const verificationCode = message.subject.match(/\d{6}/)[0]; // Step 7: Use the verification code // (e.g. go to a verification page and enter it). verifyAccount({ verificationCode });
套餐方案
目前 Tigrmail 免费使用,限制与未来付费计划保持一致。你可以放心开发、测试与集成 —— 无后顾之忧。