gulp-sendinblue
v0.0.3
Published
Send emails with SendinBlue API.
Downloads
5
Maintainers
Readme
gulp-sendinblue
This is a fork of gulp-mailgun.
This Gulp Plug In works similar to gulp-mailgun but uses the SendinBlue NodeJS API.
Basic Implemenation
Include the plugin in your project:
sendinblue = require('gulp-sendinblue');
Usage would be similar to this:
gulp.task('sendinblue', function () {
gulp.src( '*/*.html') // Modify this to select the HTML file(s)
.pipe(sendmail({
key: 'enter-your-api-key-here', // Enter your SendinBlue API key here
sender: '[email protected]',
recipient: '[email protected]',
subject: 'This is a test email'
}));
});