YourMailSign in

UK-based email sending

Send email from the UK. In four lines.

YourMail sends your app's emails — receipts, password resets, welcome messages — from servers in London (eu-west-2). Send from your own domain, track every delivery, and your data never leaves the UK.

send.ts
import { YourMail } from "@yourmail/sdk";

const yourmail = new YourMail(process.env.YOURMAIL_API_KEY);

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