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
- Require or import the module into your
index.js
:
const nodemailer = require('nodemailer')
- Initialize the mailer with our Gmail account info:
// Gmail account info
const transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'youremail@gmail.com',
pass: 'yourpassword'
}
});
- 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'
};
- 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);
}
});
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);
}
});
Javascript buddy 🤝
Table of contents
- Javascript 🚀 - Part 1
- Ruby 💎 - Part 2
- Python 🐍 - Part 3
Top comments (3)
Thanks this is nice
Thanks!
Wow, thanks this is interesting. I will follow you