Skip to content

Instantly share code, notes, and snippets.

@jeffreysbrother
Created March 2, 2016 23:15
Show Gist options
  • Save jeffreysbrother/89219ddf3895795e480b to your computer and use it in GitHub Desktop.
Save jeffreysbrother/89219ddf3895795e480b to your computer and use it in GitHub Desktop.
Automatically inline all the CSS in an HTML email (using the grunt-inline-css plugin by jgallen23)
module.exports = function(grunt) {
grunt.initConfig({
inlinecss: {
main: {
options: {
removeStyleTags: false,
preserveImportant: true,
preserveMediaQueries: true,
webResources: {
images: false
}
},
files: {
'dist/email-1.html': 'email-1.html',
'dist/email-2.html': 'email-2.html',
'dist/email-3.html': 'email-3.html',
'dist/email-4.html': 'email-4.html',
'dist/email-5.html': 'email-5.html',
'dist/email-6.html': 'email-6.html',
'dist/email-7.html': 'email-7.html',
'dist/email-8.html': 'email-8.html'
}
}
}
});
grunt.loadNpmTasks('grunt-inline-css');
grunt.registerTask('default', ['inlinecss']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment