send_email
Send transactional email through your AWS SES account with a verified sender address. Supports HTML or plain text body and delivery to one recipient or up to 1000 addresses.
Instructions
Send a transactional email via your AWS SES account. Requires WRAPS_WRITE_ENABLED=true. The from address must be a verified Wraps domain. The to field accepts a single address or an array of addresses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient address, or an array of up to 1000 addresses. | |
| from | No | Sender address. Must be a verified SES identity in this account. Defaults to WRAPS_FROM_EMAIL. | |
| html | No | HTML body. Provide `html`, `text`, or both; at least one is required. | |
| text | No | Plain-text body. Provide `html`, `text`, or both; at least one is required. | |
| subject | Yes | Subject line. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipients the message was accepted for. | |
| from | Yes | ||
| messageId | Yes | SES message id; pass to get_email_event_log for delivery events. |