Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 348 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 348 Bytes

gulp-mailer

Send emails using nodemailer in your gulp builds.

Usage

var gulp = require('gulp');
var mailer = require('gulp-mailer');

gulp.task('send', function () {
	return gulp.src('emails/*.html')
		.pipe(mailer({
            from: 'nodemailer <[email protected]>',
            to: ['[email protected]']
        }));
});