Skip to content

Next Steps

Test Your Content - Use our content scoring API before sending campaigns:

curl -X POST https://api.mailerlogic.net/api/content-score \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"subject": "Your Newsletter", "html": "<html>...</html>", "text": "..."}'

Set Up Webhooks - Receive real-time notifications for all email events (delivered, opened, clicked, bounced, complained, unsubscribed, failed):

curl -X POST https://api.mailerlogic.net/api/v1/customer/webhooks \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-domain.com/webhooks/mailerlogic",
    "events": ["email.delivered", "email.opened", "email.clicked", "email.bounced", "email.complained"],
    "domain_ids": null,
    "is_active": true
  }'

See the Webhooks section for domain grouping (multiple domains → one webhook) and complete event documentation.

Best Practices:

  • Always use verified domains
  • Enable tracking for engagement insights
  • Monitor your bounce and complaint rates
  • Use suppression lists to avoid known bad addresses
  • Test content before sending large campaigns