YourMail

Your app’s email, sent from the UK.

  • Sent from London · AWS SES in eu-west-2
  • DKIM-signed and DMARC-aligned from your own domain
  • 3,000 emails a month free, no card required
  • Delivery, bounce, open and click events over HMAC-signed webhooks
import { YourMail } from "yourmail";

await new YourMail(process.env.YOURMAIL_API_KEY).send({
  from: "hello@mail.yourdomain.com",
  to: "customer@example.com",
  subject: "Welcome aboard",
  html: "<p>Thanks for signing up.</p>",
});