|
| 1 | +--- |
| 2 | +title: Resend |
| 3 | +description: Send emails with Resend. |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="resend" |
| 10 | + color="#181C1E" |
| 11 | + icon={true} |
| 12 | + iconSvg={`<svg className="block-icon" |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + viewBox='0 0 1800 1800' |
| 17 | + fill='none' |
| 18 | + xmlns='http://www.w3.org/2000/svg' |
| 19 | + > |
| 20 | + <path |
| 21 | + d='M1000.46 450C1174.77 450 1278.43 553.669 1278.43 691.282C1278.43 828.896 1174.77 932.563 1000.46 932.563H912.382L1350 1350H1040.82L707.794 1033.48C683.944 1011.47 672.936 985.781 672.935 963.765C672.935 932.572 694.959 905.049 737.161 893.122L908.712 847.244C973.85 829.812 1018.81 779.353 1018.81 713.298C1018.8 632.567 952.745 585.78 871.095 585.78H450V450H1000.46Z' |
| 22 | + fill='#FDFDFD' |
| 23 | + /> |
| 24 | + </svg>`} |
| 25 | +/> |
| 26 | + |
| 27 | +{/* MANUAL-CONTENT-START:intro */} |
| 28 | +[Resend](https://resend.com/) is a modern email service designed for developers to send transactional and marketing emails with ease. It provides a simple, reliable API and dashboard for managing email delivery, templates, and analytics, making it a popular choice for integrating email functionality into applications and workflows. |
| 29 | + |
| 30 | +With Resend, you can: |
| 31 | + |
| 32 | +- **Send transactional emails**: Deliver password resets, notifications, confirmations, and more with high deliverability |
| 33 | +- **Manage templates**: Create and update email templates for consistent branding and messaging |
| 34 | +- **Track analytics**: Monitor delivery, open, and click rates to optimize your email performance |
| 35 | +- **Integrate easily**: Use a straightforward API and SDKs for seamless integration with your applications |
| 36 | +- **Ensure security**: Benefit from robust authentication and domain verification to protect your email reputation |
| 37 | + |
| 38 | +In Sim, the Resend integration allows your agents to programmatically send emails as part of your automated workflows. This enables use cases such as sending notifications, alerts, or custom messages directly from your Sim-powered agents. By connecting Sim with Resend, you can automate communication tasks, ensuring timely and reliable email delivery without manual intervention. The integration leverages your Resend API key, keeping your credentials secure while enabling powerful email automation scenarios. |
| 39 | +{/* MANUAL-CONTENT-END */} |
| 40 | + |
| 41 | + |
| 42 | +## Usage Instructions |
| 43 | + |
| 44 | +Integrate Resend into the workflow. Can send emails. Requires API Key. |
| 45 | + |
| 46 | + |
| 47 | + |
| 48 | +## Tools |
| 49 | + |
| 50 | +### `resend_send` |
| 51 | + |
| 52 | +Send an email using your own Resend API key and from address |
| 53 | + |
| 54 | +#### Input |
| 55 | + |
| 56 | +| Parameter | Type | Required | Description | |
| 57 | +| --------- | ---- | -------- | ----------- | |
| 58 | +| `fromAddress` | string | Yes | Email address to send from | |
| 59 | +| `to` | string | Yes | Recipient email address | |
| 60 | +| `subject` | string | Yes | Email subject | |
| 61 | +| `body` | string | Yes | Email body content | |
| 62 | +| `resendApiKey` | string | Yes | Resend API key for sending emails | |
| 63 | + |
| 64 | +#### Output |
| 65 | + |
| 66 | +| Parameter | Type | Description | |
| 67 | +| --------- | ---- | ----------- | |
| 68 | +| `success` | boolean | Whether the email was sent successfully | |
| 69 | +| `to` | string | Recipient email address | |
| 70 | +| `subject` | string | Email subject | |
| 71 | +| `body` | string | Email body content | |
| 72 | + |
| 73 | + |
| 74 | + |
| 75 | +## Notes |
| 76 | + |
| 77 | +- Category: `tools` |
| 78 | +- Type: `resend` |
0 commit comments