resend
Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/christina-de-martinez/resend-skillsWhat This Skill Does
The resend skill serves as the central router for interacting with the Resend email platform within the OpenClaw ecosystem. Rather than being a monolithic tool, it orchestrates four specialized sub-skills: send-email for transactional dispatch, resend-inbound for processing incoming mail, agent-email-inbox for secure AI-driven email handling, and templates for lifecycle management of reusable email content. By utilizing this unified routing layer, developers can streamline the integration of robust email capabilities—including attachments, webhooks, and secure message parsing—into their autonomous agents and automated workflows without needing to manage disparate API configurations manually.
Installation
To integrate this suite of skills into your OpenClaw environment, execute the following command in your terminal:
clawhub install openclaw/skills/skills/christina-de-martinez/resend-skills
Ensure that you have your Resend API key generated from the Resend dashboard. Once installed, store your key in the environment as export RESEND_API_KEY=re_xxxxxxxxx. This ensures all sub-skills are authorized to authenticate against the Resend API seamlessly.
Use Cases
- Transactional Notifications: Use
send-emailto trigger password resets, order confirmations, or account alerts. - AI-Enabled Support Desks: Utilize
agent-email-inboxto parse incoming customer support tickets, perform sentiment analysis, and trigger automated responses or database updates. - Automated Newsletter Management: Manage your reusable templates via the
templatesskill, allowing for version control and consistent branding across all automated correspondence. - Inbound Email Logic: Deploy
resend-inboundto create custom webhooks that handle attachments and metadata from received mail, enabling powerful automation like auto-forwarding or archival systems.
Example Prompts
- "OpenClaw, use the resend skill to send a transactional receipt using the 'order-confirmation' template to [email protected] with order ID #12345."
- "Configure my agent-email-inbox to route all incoming emails from trusted senders to my database and flag any suspicious content for manual review."
- "List all my available email templates and update the 'welcome-email' draft to include the new company branding link."
Tips & Limitations
- Marketing vs. Transactional: Always use the official Resend Broadcasts feature for marketing newsletters; the
send-emailskill is strictly designed for transactional logic. - Security First: When using
agent-email-inbox, strictly enforce allowlists for external senders to prevent malicious code injection via untrusted email bodies. - Testing: Always use the
templatesskill to test rendering with sample variables before pushing live updates. For local development with inbound webhooks, ensure you are using a tunneling service like ngrok to verify your hooks.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-christina-de-martinez-resend-skills": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: external-api, data-collection
Related Skills
email-best-practices
Use when building email features, emails going to spam, high bounce rates, setting up SPF/DKIM/DMARC authentication, implementing email capture, ensuring compliance (CAN-SPAM, GDPR, CASL), handling webhooks, retry logic, or deciding transactional vs marketing.
react-email
Create beautiful, responsive HTML emails using React components with React Email. Build transactional emails with modern components, support internationalization, and integrate with email service providers like Resend. Use when creating welcome emails, password resets, notifications, order confirmations, or any HTML email templates.