Welcome to SendDock
SendDock is an email platform for developers. Send transactional emails using your own SMTP provider (AWS SES, SendGrid, etc.).
Quick Start (2 Minutes)
- Get your API Keys: Go to Settings.
- Create a Template: Go to Templates and create one named
welcome. - Send your first email:
curl -X POST https://senddock.dev/api/v1/send \
-H "Authorization: Bearer sdk_..." \
-H "Content-Type: application/json" \
-d '{
"email": "you@example.com",
"template": "welcome",
"data": { "name": "Developer" }
}'
Features
- 📧 Transactional Emails - Send emails with templates
- 👥 Subscriber Management - Manage your email list
- 📨 Broadcasts - Send mass emails to your audience
- 🔐 API Keys - Public and Secret keys for different use cases
- 🌐 CORS Support - Use directly from your frontend
- 🎨 Visual Editor - Create beautiful email templates
Getting Started
Check the API Documentation to learn more about how to integrate SendDock into your application.