gulp-mjml-cshtml
v1.0.8
Published
Compile mjml to cshtml with Gulp
Downloads
7
Readme
Gulp MJML
Add Gulp to your MJML workflow!
Usage:
With an MJML file named
test.mjml
, render your emails to an html folder:
var gulp = require('gulp')
var mjml = require('gulp-mjml-cshtml')
gulp.task('default', function () {
return gulp.src('./test.mjml')
.pipe(mjml())
.pipe(gulp.dest('./html'))
})
If you have custom components linked to your own mjmlEngine, you can pass it to the gulp task so it uses your engine to render the html:
var gulp = require('gulp')
var mjml = require('gulp-mjml-cshtml')
// Require your own components if needed, and your mjmlEngine (possibly with options)
// require('./components')
var mjmlEngine = require('mjml')
gulp.task('default', function () {
return gulp.src('./test.mjml')
.pipe(mjml(mjmlEngine, {minify: true}))
.pipe(gulp.dest('./html'))
})