Resend Email
Manage Resend email campaigns, contacts, audiences, domains, templates, and transactional sends via the Resend API. Use when users want to inspect email acti...
Jay
@hith3sh
What This Skill Does
Manages Resend email campaigns, contacts, audiences, domains, templates, and transactional sends via the Resend API. Uses ClawLink for hosted OAuth so no manual API key configuration is needed.
Replaces manual API key setup and separate email service integrations by providing a single chat interface to manage all Resend email operations.
When to Use It
- List all contacts in a Resend audience
- Create and send a transactional email via the Resend API
- Manage email templates and domains for campaigns
- Inspect recent email activity and delivery status
- Automate audience segmentation and contact updates
Install
$ openclaw skills install @hith3sh/resend-mailResend Email
Manage Resend from chat — email campaigns, contacts, audiences, domains, templates, and transactional sends via the Resend API.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Resend API access yourself.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Resend |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Resend |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Resend │
│ (User Chat) │ │ (OAuth) │ │ (Email API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Resend │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Resend │
│ File │ │ Auth │ │ Dashboard│
└──────────┘ └──────────┘ └──────────┘
Install
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Resend again."
Quick Start
# List all contacts
clawlink_call_tool --tool "resend_list_all_contacts" --params '{"limit": 20}'
# List audiences
clawlink_call_tool --tool "resend_list_audiences" --params '{}'
# Send an email
clawlink_call_tool --tool "resend_send_email" --params '{"from": "team@example.com", "to": ["recipient@example.com"], "subject": "Hello", "html": "<p>Hello world</p>"}'
Authentication
All Resend tool calls are authenticated automatically by ClawLink using the user's connected Resend account.
No API key is required in chat. ClawLink stores the credentials securely and injects them into every Resend API request on the user's behalf.
Getting Connected
- Install the ClawLink plugin (see Install above).
- Pair the plugin with
clawlink_begin_pairingif it is not configured yet. - Open https://claw-link.dev/dashboard?add=resend and connect Resend.
- Call
clawlink_list_integrationsto verify the connection is active.
Connection Management
List Connections
clawlink_list_integrations
Response: Returns all connected integrations. Look for resend in the list.
Verify Connection
clawlink_list_tools --integration resend
Response: Returns the live tool catalog for Resend.
Reconnect
If Resend tools are missing or the connection shows an error:
- Direct the user to https://claw-link.dev/dashboard?add=resend
- After they confirm, call
clawlink_list_integrationsto verify - Then call
clawlink_list_tools --integration resend
Security & Permissions
- Access is scoped to the Resend account accessible via the connected account.
- All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
- Destructive actions (delete contact, delete audience, delete domain) are marked as high-impact and must be confirmed.
- Confirm before sending emails or making broad contact changes — sends are irreversible.
Tool Reference
Audiences & Contacts
| Tool | Description | Mode |
|---|---|---|
resend_list_audiences | List all audiences | Read |
resend_retrieve_audience | Get audience details | Read |
resend_create_audience | Create a new audience | Write |
resend_delete_audience | Delete an audience | Write |
resend_list_all_contacts | List all contacts | Read |
resend_list_contacts | List contacts in an audience | Read |
resend_get_contact | Get contact details | Read |
resend_create_contact | Create a contact | Write |
resend_create_contact_v2 | Create a contact (v2) | Write |
resend_update_contact | Update contact details | Write |
resend_delete_contact | Delete a contact | Write |
resend_delete_contact_by_id | Delete contact by ID | Write |
resend_add_contact_to_segment | Add contact to segment | Write |
resend_remove_contact_from_segment | Remove contact from segment | Write |
resend_list_contact_segments | List segments for a contact | Read |
resend_list_contact_topics | List topics for a contact | Read |
Segments & Topics
| Tool | Description | Mode |
|---|---|---|
resend_list_segments | List all segments | Read |
resend_get_segment | Get segment details | Read |
resend_create_topic | Create a topic | Write |
resend_list_topics | List all topics | Read |
resend_get_topic | Get topic details | Read |
resend_update_topic | Update a topic | Write |
resend_delete_segment | Delete a segment | Write |
resend_delete_topic | Delete a topic | Write |
Domains
| Tool | Description | Mode |
|---|---|---|
resend_list_domains | List all domains | Read |
resend_retrieve_domain | Get domain details | Read |
resend_create_domain | Create and verify a domain | Write |
resend_verify_domain | Verify domain DNS records | Write |
resend_update_domain | Update domain settings | Write |
resend_delete_domain | Delete a domain | Write |
Templates
| Tool | Description | Mode |
|---|---|---|
resend_list_templates | List all templates | Read |
resend_get_template | Get template details | Read |
resend_create_template | Create a template | Write |
resend_update_template | Update a template | Write |
resend_delete_template | Delete a template | Write |
resend_duplicate_template | Duplicate a template | Write |
resend_publish_template | Publish a template | Write |
Emails
| Tool | Description | Mode |
|---|---|---|
resend_list_emails | List sent emails | Read |
resend_retrieve_email | Get email details | Read |
resend_send_email | Send a single email | Write |
resend_send_batch_emails | Send up to 100 emails | Write |
resend_cancel_email | Cancel a scheduled email | Write |
resend_update_email | Update a scheduled email | Write |
resend_list_email_attachments | List attachments on an email | Read |
resend_get_email_attachment | Get attachment details | Read |
resend_list_received_emails | List received emails | Read |
Webhooks
| Tool | Description | Mode |
|---|---|---|
resend_list_webhooks | List all webhooks | Read |
resend_get_webhook | Get webhook details | Read |
resend_create_webhook | Create a webhook | Write |
resend_update_webhook | Update a webhook | Write |
resend_delete_webhook | Delete a webhook | Write |
Broadcasts
| Tool | Description | Mode |
|---|---|---|
resend_list_broadcasts | List all broadcasts | Read |
resend_update_broadcast | Update a broadcast | Write |
Contact Properties
| Tool | Description | Mode |
|---|---|---|
resend_list_contact_properties | List contact property definitions | Read |
resend_get_contact_property | Get contact property details | Read |
resend_create_contact_property | Create a contact property | Write |
resend_update_contact_property | Update a contact property | Write |
resend_delete_contact_property | Delete a contact property | Write |
API Keys
| Tool | Description | Mode |
|---|---|---|
resend_list_api_keys | List all API keys | Read |
resend_create_api_key | Create a new API key | Write |
resend_delete_api_key | Revoke an API key | Write |
Code Examples
List all contacts
clawlink_call_tool --tool "resend_list_all_contacts" \
--params '{
"limit": 20
}'
Create an audience
clawlink_call_tool --tool "resend_create_audience" \
--params '{
"name": "Newsletter Subscribers"
}'
Send an email
clawlink_call_tool --tool "resend_send_email" \
--params '{
"from": "team@company.com",
"to": ["recipient@example.com"],
"subject": "Welcome to our newsletter",
"html": "<p>Hello! Thanks for subscribing.</p>"
}'
Create a contact
clawlink_call_tool --tool "resend_create_contact" \
--params '{
"audience_id": "AUDIENCE_ID",
"email": "newcontact@example.com",
"first_name": "Jane",
"last_name": "Doe"
}'
Discovery Workflow
- Call
clawlink_list_integrationsto confirm Resend is connected. - Call
clawlink_list_tools --integration resendto see the live catalog. - Treat the returned list as the source of truth. Do not guess or assume what tools exist.
- If the user describes a capability but the exact tool is unclear, call
clawlink_search_toolswith a short query and integrationresend. - If no Resend tools appear, direct the user to https://claw-link.dev/dashboard?add=resend.
Execution Workflow
┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → retrieve → call │
│ │
│ Example: List contacts → Get details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute send │
└─────────────────────────────────────────────────────────────┘
- For unfamiliar tools, ambiguous requests, or any write action, call
clawlink_describe_toolfirst. - Use the returned guidance, schema,
whenToUse,askBefore,safeDefaults,examples, andfollowupsto shape the call. - Prefer read, list, and get operations before writes when that reduces ambiguity.
- For writes or anything marked as requiring confirmation, call
clawlink_preview_toolfirst. - Execute with
clawlink_call_tool. Pass confirmation only after the preview matches the user's intent. - If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.
Notes
- Domain verification requires adding DNS records — allow time for propagation before verifying.
- Emails must have explicit
to,cc, orbccrecipients — audience-based sending is not supported. - Scheduled emails can be cancelled or updated before their scheduled time.
- Batch emails support up to 100 recipients per request.
Error Handling
| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration resend. |
| Missing connection | Resend is not connected. Direct the user to https://claw-link.dev/dashboard?add=resend. |
DOMAIN_NOT_VERIFIED | Domain DNS records have not propagated. Wait and retry verification. |
CONTACT_ALREADY_EXISTS | The contact email is already in the audience. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
Troubleshooting: Tools Not Visible
- Check that the ClawLink plugin is installed:
openclaw plugins list - If the plugin is installed but tools are missing, tell the user to send
/newas a standalone message to reload the catalog. - If a fresh chat does not help, run:
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json openclaw gateway restart - After restart, tell the user to send
/newagain and retry.
Troubleshooting: Invalid Tool Call
- Ensure the integration slug is exactly
resend. - Use
clawlink_describe_toolto verify parameter names and types before calling. - For write operations, always call
clawlink_preview_toolfirst.
Resources
- Resend API Documentation
- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=resend-mail
- ClawLink Docs: https://docs.claw-link.dev/openclaw
- ClawLink Verification: https://claw-link.dev/verify
Related Skills
- SendGrid — For Twilio SendGrid email operations

Top skills in this category
Humanizer
@biostartechnologyRemove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
Slack
@steipeteUse when you need to control Slack from Clawdbot via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
PollyReach
@pollyreachPollyReach gives every AI agent a phone number and the ability to get things done over the phone — finding contacts, making calls, and completing tasks. Just...
imap-smtp-email
@gzlicanyiRead and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Supports multiple accounts. Works with any IMAP/SMTP server including Gmail, Outlook, 163.com, vip.163.com, 126.com, vip.126.com, 188.com, and vip
Answer Overflow
@rhyssullivanSearch indexed Discord community discussions via Answer Overflow. Find solutions to coding problems, library issues, and community Q&A that only exist in Discord conversations.

