3 ways to send emails with only few lines of code and Gmail - Javascript - Part 1

fralps

François

Posted on June 14, 2021

3 ways to send emails with only few lines of code and Gmail - Javascript - Part 1

We will see how to send a simple email with the help of three different programming languages: Javascript, Ruby and Python
Before you start you need to create a Gmail account.
Do not forget to accept and allow the "Less secure apps" access in order use your scripts with your Gmail smtp connection.
I'll let you do this on your own, you don't need a tutorial for this
😜

Javascript πŸš€

  • For the first script, we are going to use the Nodemailer module:
yarn add nodemailer
Enter fullscreen mode Exit fullscreen mode
  • Require or import the module into your index.js:
const nodemailer = require('nodemailer')
Enter fullscreen mode Exit fullscreen mode
  • Initialize the mailer with our Gmail account info:
// Gmail account info
const transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'youremail@gmail.com',
    pass: 'yourpassword'
  }
});
Enter fullscreen mode Exit fullscreen mode
  • Create your email:
// Email info
const mailOptions = {
  from: 'youremail@gmail.com',
  to: 'myfriend@yopmail.com',
  subject: 'Sending email using Node.js',
  text: 'Easy peasy lemon squeezy'
};
Enter fullscreen mode Exit fullscreen mode
  • Sending your email:
// Send email and retrieve server response
transporter.sendMail(mailOptions, function(error, info){
  if (error) {
    console.log(error);
  } else {
    console.log('Email sent: ' + info.response);
  }
});
Enter fullscreen mode Exit fullscreen mode

Here the final code:

const nodemailer = require('nodemailer')

// Gmail account info
const transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'youremail@gmail.com',
    pass: 'yourpassword'
  }
});

// Email info
const mailOptions = {
  from: 'youremail@gmail.com',
  to: 'myfriend@yopmail.com',
  subject: 'Sending email using Node.js',
  text: 'Easy peasy lemon squeezy'
};

// Send email πŸ“§  and retrieve server response
transporter.sendMail(mailOptions, function(error, info){
  if (error) {
    console.log(error);
  } else {
    console.log('Email sent: ' + info.response);
  }
});
Enter fullscreen mode Exit fullscreen mode

Javascript buddy 🀝

Javascript buddy

Table of contents

πŸ’– πŸ’ͺ πŸ™… 🚩
fralps
François

Posted on June 14, 2021

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

Sign up to receive the latest update from our blog.

Related