Send an Email Asynchronously
POST/send-async
Queues an email message for asynchronous processing and returns immediately with a request ID.
The email will be processed in the background, and you'll receive webhook events for all delivery status updates (e.g. dropped, processed, delivered, hard-bounced). These webhook events are identical to those sent for the synchronous /send endpoint.
Use this endpoint when you need to send emails without waiting for processing to complete. This can improve your application's response time, especially when sending to multiple recipients.
Request
Responses
- 202
- 400
- 403
- 413
- 500
Request accepted and queued for processing
Bad Request
User does not have access to this feature
Payload too large - The total message size should not exceed 30MB. This includes the message itself, headers, and the combined size of any attachments.
Internal Server Error