Minimalistic module to send emails using GMail
Basically it's a wrapper around nodemailer
package to simplify its usage for GMail accounts even more.
If you have different needs regarding the functionality, please add a feature request.
npm install --save gmail-send
Configure application-specific passwords for your GMail account (if you are not using two-step verification, just skip this step and use same password you are using to login to GMail)
To be able send emails using GMail from any application (including Node.js) you need to generate application-specific password to access GMail: My Account -> Sign-in & security -> Signing in to Google -> App passwords
Select 'Other (Custom name)' in 'Select app'/'Select device' drop-downs, enter descriptive name for your application and device and press 'GENERATE'. Copy provided password.
console.log('* [example 1.1] sending test email');
// Require'ing module and setting default options
var send = require('gmail-send')({
//var send = require('../index.js')({
user: '[email protected]',
// user: credentials.user, // Your GMail account used to send emails
pass: 'abcdefghijklmnop',
// pass: credentials.pass, // Application-specific password
to: '[email protected]',
// to: credentials.user, // Send to yourself
// you also may set array of recipients:
// [ '[email protected]', '[email protected]' ]
// from: credentials.user // from: by default equals to user
// replyTo: credentials.user // replyTo: by default undefined
subject: 'test subject',
text: 'gmail-send example 1', // Plain text
//html: '<b>html text</b>' // HTML
});
// Override any default option and send email
console.log('* [example 1.1] sending test email');
var filepath = './demo-attachment.txt'; // File to attach
send({ // Overriding default parameters
subject: 'attached '+filepath, // Override value set as default
files: [ filepath ],
}, function (err, res) {
console.log('* [example 1.1] send() callback returned: err:', err, '; res:', res);
});
// Set additional file properties
console.log('* [example 1.2] sending test email');
send({ // Overriding default parameters
subject: 'attached '+filepath, // Override value set as default
files: [ // Array of files to attach
{
path: filepath,
filename: 'filename-can-be-changed.txt' // You can override filename in the attachment if needed
}
],
}, function (err, res) {
console.log('* [example 1.2] send() callback returned: err:', err, '; res:', res);
});
You may also set all needed parameters at once and immediately send:
console.log('* [example2] sending test email without checking the result');
//var send = require('gmail-send')({
require('../index.js')({
user: credentials.user, // Your GMail account used to send emails
pass: credentials.pass, // Application-specific password
to: credentials.user, // Send to yourself
subject: 'ping',
text: 'gmail-send example 3', // Plain text
})({}); // Send email without any check
You can find this working examples in ./demo/demo.js
(you'll need to set your GMail user/pass in credential.json.example
and rename it to credential.json
in order to run the example). When credentials are set, run the application using node demo/demo.js
or node demo.js
depending on your current directory.
github.com npmjs.com travis-ci.org coveralls.io inch-ci.org
MIT