π¦ ClawHub
Agentmail Wrapper
by @shepherd217
Send, track, schedule emails with multi-provider support, verified delivery, unsubscribe management, and compliance reporting via SMTP, API, and OAuth.
TERMINAL
clawhub install agentmail-wrapperπ About This Skill
AgentMail Wrapper
Version: 1.0.0 Author: Midas Skills License: MIT
Description
Verified email delivery integration. Send, track, schedule with multi-provider support (SendGrid, Mailgun, AWS SES, SMTP). GDPR/CAN-SPAM compliant.Value Proposition
Verified email agent integration. Send, track, schedule emails with verified delivery & unsubscribe compliance. SMTP, API, OAuth support.Category
email-integrationTags
email, delivery-tracking, multi-provider, compliance, automationSkill Type
integrationPricing
Key Features
Use Cases
Installation
npm install agentmail-wrapper
or
pip install agentmail-wrapper
Quick Start
const AgentMail = require('agentmail-wrapper');const mail = new AgentMail({
provider: 'sendgrid', // or 'smtp', 'mailgun', 'aws-ses'
apiKey: process.env.SENDGRID_API_KEY
});
await mail.send({
to: 'user@example.com',
subject: 'Welcome!',
html: '
Hello
',
trackClicks: true,
trackOpens: true
});
Repository
https://github.com/midas-skills/agentmail-wrapperSupport
π§ support@midas-skills.com π Docs: https://docs.midas-skills.com/agentmail-wrapperβ‘ When to Use
π‘ Examples
const AgentMail = require('agentmail-wrapper');const mail = new AgentMail({
provider: 'sendgrid', // or 'smtp', 'mailgun', 'aws-ses'
apiKey: process.env.SENDGRID_API_KEY
});
await mail.send({
to: 'user@example.com',
subject: 'Welcome!',
html: '
Hello
',
trackClicks: true,
trackOpens: true
});