gulp-sendinblue

0.0.3 • Public • Published

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: 'from@test.com',
    recipient: 'to@test.com',
    subject: 'This is a test email'
  }));
});

Package Sidebar

Install

npm i gulp-sendinblue

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • sebastianferdinand