Use Cases
Each guide is the working version of one integration: what to write, where the sharp edges are, and what it costs in credits. All of them use the same three moves, which are creating an inbox, waiting for mail, and reading the body.
-
Playwright email testing
A fixture that hands every test its own address, and expect.poll instead of a fixed sleep. Safe under parallel workers.
-
Cypress email testing
Two custom commands built on cy.request. No plugin, no Node task, and a recursive retry that returns as soon as the mail lands.
-
n8n email verification
Three HTTP Request nodes plus a Wait node. Includes the response-format setting that trips up the first node.
-
LangChain agent inbox
Three tools in Python, with the polling loop inside the tool so the model does not spend a turn on every retry.
-
Claude agent inbox via MCP
One config line, no wrapper code. The MCP server auto-registers and exposes create, wait and read as tools.
-
ChatGPT via GPT Actions
Import the OpenAPI spec into a custom GPT and give it an inbox in about five minutes.