Send email over SMTP
You can now send transactional email over SMTP, not just the API. Point any app that speaks SMTP (a CMS, CRM, helpdesk, or a legacy system you'd rather not touch) at Zend, and it sends over the same verified domains, SES-backed deliverability, tracking, and billing as POST /email/send.
What's new
- Drop-in SMTP: change four settings instead of writing code. Works with anything that already sends email over SMTP.
- Your API key is the password: username
zendsmtp, password your Zend API key (with theemail:sendscope). Nothing new to manage or store. - Same everything: verified-domain enforcement, DKIM/SPF signing, open/bounce/complaint tracking, suppression, and billing are identical to the API. Sends show up in the same Email history.
Connection settings
| Setting | Value |
|---|---|
| Host | smtp.tryzend.com |
| Port | 587 (STARTTLS) or 465 (TLS) |
| Username | zendsmtp |
| Password | your Zend API key |
swaks --server smtp.tryzend.com --port 587 -tls \
--auth-user zendsmtp --auth-password "$ZEND_API_KEY" \
--from "receipts@yourdomain.com" --to "customer@example.com" \
--header "Subject: Your receipt" --body "Thanks for your order!"
See the SMTP documentation.