0.0.3 • Published 8 years ago

gulp-sendinblue v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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'
  }));
});