Create Mailbox
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { mailbox, mailboxError } = await reloop.inbox.mailboxes.create({6 domainId: "dom_123456789",7 email: "support@example.com",8 displayName: "Support",9});10if (mailboxError) throw mailboxError;1{2 "id": "con_123456789",3 "email": "john.doe@example.com",4 "status": "example_status"5}Body Parameters
domainIdstringRequired
Associated verified Domain ID
emailstringRequired
Full email address for the mailbox
passwordstring
Mailbox password
quotastring
Storage quota, defaults to 5 GB
displayNamestring
Friendly name of the mailbox sender
Was this page helpful?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.