SMTP relay
Send emails using standard SMTP, backed by Sidemail’s reliable delivery and simple setup. Perfect for legacy systems, WordPress plugins, and any other SMTP-capable apps.
SMTP relay example
Javascript · HTML email
const nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
host: "mx.sidemail.net",
port: 587,
secure: false,
auth: {
user: "api",
pass: "your-api-key"
}
});
await transporter.sendMail({
from: "[email protected]",
to: "[email protected]",
subject: "Hello!",
text: "This is a test email.",
html: "<p>This is a test email.</p>"
});Start your free trial here. In your Dashboard, you can then add the domain you want to use for SMTP sending and get your API key.
Connection details:
mx.sidemail.net587STARTTLSapi or leave empty)Example of markdown email with Nodemailer (Node.js):
const nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
host: "mx.sidemail.net",
port: 587,
secure: false,
auth: {
user: "api",
pass: "your-api-key"
}
});
await transporter.sendMail({
from: "[email protected]",
to: "[email protected]",
subject: "Weekly Update",
text: `# Hello!
This is a **markdown** email with:
- Bullet points
- [Links](https://example.com)
- And more!`,
headers: {
"X-Sidemail-Markdown": "true"
}
});Key features & perks
Sidemail is built for SaaS and developers who want beautiful, reliable emails without complexity. Our SMTP relay extends that philosophy: use the protocol you know, get the quality you need.
Your emails benefit from our battle-tested infrastructure, so they land in inboxes, not spam.



Add the header X-Sidemail-Markdown: true and send plain-text Markdown. Sidemail automatically converts it to a beautiful, responsive, branded HTML email using your project’s logo, colors, fonts, and dark mode settings. No HTML coding required.
Keep your current app, plugin, or workflow and send through standard SMTP instead of rewriting your integration.



SMTP is just one way to send. Use our modern JSON API, no-code email editor, templates, Messenger for sending product updates and newsletters, email automations, contact management, analytics, logs, and more. All in the same dashboard.
Join developers and SaaS teams using Sidemail for stress-free delivery. No credit card required. Full features during trial.
Create free accountAn SMTP relay is a service that accepts emails via the standard SMTP protocol and delivers them reliably on your behalf. Sidemail handles the hard parts: infrastructure, reputation, authentication, and deliverability.
Usually no, just update the SMTP host, port, and credentials.
Set the X-Sidemail-Markdown: true header. Your plain text body is treated as Markdown and turned into a fully branded, responsive email.
Yes. You get the full power of Sidemail’s infrastructure.
5MB max message size.
Absolutely, mix and match as needed.