Send email with nodemailer

mohsinalisoomro

MOHSIN ALI SOOMRO

Posted on February 7, 2022

Send email with nodemailer

Enable these
lesssecure
DisplayUnlockCaptcha

import nodemailer from "nodemailer";
async function sendEmail(to, subject, text) {
  try {
    const transport = nodemailer.createTransport({
      port: 587,
      host: "smtp.gmail.com",
      auth: {
        user: "<Your Email>",
        pass: "<Your Password>",
      },
    });
    const option = {
      from: "<Email>",
      to: to,
      subject: subject,
      text: text,
    };
    const result = await transport.sendMail(option);
    console.log("function", { result });
    return result;
  } catch (error) {
    return error;
  }
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
mohsinalisoomro
MOHSIN ALI SOOMRO

Posted on February 7, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

What was your win this week?
weeklyretro What was your win this week?

November 29, 2024

Where GitOps Meets ClickOps
devops Where GitOps Meets ClickOps

November 29, 2024