SDKs for agentic email management - create email addresses and send emails programmatically for AI agents.
Maylng provides production-ready SDKs for managing email addresses and sending emails specifically designed for AI agents. Create temporary or persistent email addresses, send emails with attachments, track delivery, and manage conversations programmatically.
- 🚀 Email Address Management: Create temporary and persistent email addresses
- 📧 Email Sending: Send emails with attachments, scheduling, and threading
- 🤖 AI Agent Focused: Built specifically for AI agent email workflows
- 📊 Analytics: Track email delivery, opens, and clicks
- 🔒 Secure: API key authentication with rate limiting
- 🌐 Multi-Language: TypeScript and Python SDKs available
Full-featured TypeScript SDK with complete type safety.
npm install maylngimport { createMayl } from 'maylng';
const mayl = createMayl({ apiKey: 'your-api-key' });
// Create a temporary email
const email = await mayl.emailAddresses.create({
type: 'temporary',
expirationMinutes: 30
});
// Send an email
await mayl.emails.send({
fromEmailId: email.id,
to: [{ email: 'user@example.com' }],
subject: 'Hello from AI Agent',
text: 'This email was sent by an AI agent!'
});📖 TypeScript SDK Documentation
Python SDK for server-side applications and data processing.
from maylng import Mayl
mayl = Mayl(api_key="your-api-key")
# Create email address
email = mayl.email_addresses.create(
type="temporary",
expiration_minutes=30
)
# Send email
mayl.emails.send(
from_email_id=email.id,
to=[{"email": "user@example.com"}],
subject="Hello from AI Agent",
text="This email was sent by an AI agent!"
)- Get API Key: Sign up at maylng.com to get your API key
- Install SDK: Choose your preferred language and install the SDK
- Initialize: Create an SDK instance with your API key
- Create Email: Create a temporary or persistent email address
- Send Email: Send your first email programmatically
- AI Customer Support: Create dedicated email addresses for AI support agents
- Automated Workflows: Send notification emails from automated systems
- Testing: Create temporary emails for testing email functionality
- Multi-tenant Applications: Manage separate email addresses for different users
- Email Campaigns: Send personalized emails at scale
- TypeScript SDK - Complete TypeScript SDK documentation
- Python SDK - Python SDK documentation
- API Reference-coming soon - REST API documentation
- Examples - Code examples and tutorials
MIT License - see LICENSE for details.