Prerequisites

You will need an API key and a verified domain to get the most out of this guide:

SMTP credentials

To set up your SMTP integration, you’ll need to provide the following credentials:
  • Host: smtp.weesend.com
  • Port: 465, 587, 2465, or 2587
  • Username: weesend
  • Password: YOUR-API-KEY

Example with Nodemailer

Following example with Nodemailer shows how you can send mails with SMTP support from weeSend and Nodemailer.
const nodemailer = require("nodemailer");

const transporter = nodemailer.createTransport({
  host: "smtp.weesend.com",
  port: 465,
  secure: false,
  auth: {
    user: "weesend",
    pass: "us_123",
  },
  tls: {
    rejectUnauthorized: false,
  },
});

const mailOptions = {
  to: "sender@example.com",
  from: "hello@example.com",
  subject: "Testing SMTP",
  html: "<strong>THIS IS USING SMTP,</strong><p>weeSend is the best open source sending platform<p><p>check out <a href='https://weesend.com'>weesend.com</a>",
  text: "hello,\n\nweeSend is the best open source sending platform",
};

transporter.sendMail(mailOptions, (error, info) => {
  if (error) {
    console.error("Error sending email:", error);
  } else {
    console.log("Email sent successfully:", info.response);
  }
});