eSMS Mail
Billing & Plans
eSMS Mail subscription plans, limits, and usage.
eSMS Mail offers four plans. All plans include the core email sending features — paid plans unlock higher limits and additional features.
Plans
| Free | Starter | Pro | Business | |
|---|---|---|---|---|
| Price | $0/mo | $5/mo | $15/mo | $45/mo |
| Monthly emails | 1,000 | 10,000 | 50,000 | 200,000 |
| Daily limit | 50 | 500 | No limit | No limit |
| Domains | 1 | 3 | 10 | Unlimited |
| SMTP | Yes | Yes | Yes | Yes |
| Click tracking | — | Yes | Yes | Yes |
| Email templates | — | Yes | Yes | Yes |
| Scheduled sending | — | Yes | Yes | Yes |
| Batch sending | — | Yes | Yes | Yes |
| Analytics charts | — | Yes | Yes | Yes |
| Export reports | — | — | Yes | Yes |
| Remove branding | — | Yes | Yes | Yes |
| Dedicated IP | — | — | — | Yes |
| Team members | — | — | Yes (3) | Yes |
| Overage | — | $0.50/1,000 | $0.40/1,000 | $0.30/1,000 |
Check usage
Via dashboard
The Billing page shows your current plan, daily and monthly usage with progress bars, and resource usage (domains, API keys, SMTP credentials, etc.).
Via API
curl https://send.esmsafrica.io/v1/billing/usage \
-H "Authorization: Bearer esms_k_your_api_key"{
"plan": {
"name": "starter",
"daily_limit": 500,
"monthly_limit": 10000
},
"usage": {
"emails_today": 127,
"emails_this_month": 3450,
"daily_remaining": 373,
"monthly_remaining": 6550,
"daily_percent": 25.4,
"monthly_percent": 34.5
},
"resources": {
"domains": {"used": 2, "limit": 3},
"api_keys": {"used": 1, "limit": 2},
"smtp_credentials": {"used": 1, "limit": 2},
"sender_addresses": {"used": 2, "limit": 5},
"webhooks": {"used": 1, "limit": 3},
"forwards": {"used": 0, "limit": 5}
},
"features": {
"click_tracking": true,
"email_templates": true,
"scheduled_sending": true,
"batch_sending": true,
"analytics_charts": true,
"export_reports": false,
"remove_branding": true,
"dedicated_ip": false,
"team_members": false
}
}Subscribe
Subscriptions are managed through the billing page at send.esmsafrica.io/billing. Payments are processed securely via Paystack.
Get available plans
curl https://send.esmsafrica.io/v1/billing/plans