A grunt-ready HTML email template based on HTML Email Boilerplate.
❗ ❗MAINTAINERS WANTED: I'm no longer maintaining this project. Feel free to drop me a line if you're interested in keeping up the development ❗ ❗
- SCSS stylesheets with Compass
- image optimization with jpegtran and OptiPNG
- inlining CSS styles with grunt-premailer and Premailer
- HTML templating with EJS and more
- Environment specific code blocks in HTML with grunt-preprocess
- test email delivery with grunt-nodemailer and NodeMailer
- Node.js >= 0.10.20 (install wiki)
- Grunt-cli >= 0.1.7 and Grunt >=0.4.2 (
npm install grunt-cli -g
) - Ruby >= 1.9.3 (installers)
- Compass >= 0.12.2 (
gem install compass
) - Premailer >= 1.8.0 (
gem install premailer
and, most of the time,gem install hpricot
)
To install the boilerplate
-
install all dependencies
-
clone this git repo
git clone git://github.com/dwightjack/grunt-email-boilerplate.git
-
install node dependencies:
cd grunt-email-boilerplate
npm install
-
Run the development task
grunt dev
and start editing email files insrc
folder (by defaultemail.html
andscss/_main.scss
). By default, Grunt will try to open the email preview in your default browser; alternatively, preview URL ishttp://localhost:8000/
.
Version 0.3 introduces several changes to included plugins, tasks and folders' structure:
- System changes
- Boilerplate now requires Node.js >= 0.10.20, Ruby >= 1.9.3, Premailer >= 1.8.0 and Grunt >=0.4.2
- Files and folder changes
data
folder moved intosrc
- intermediate files (as
_tmp.email.html
) are now stored in a temporary folder (tmp
by default) - build folder
dist
is no more suffixed with current date
- Tasks and configuration changes
- Updated all tasks to latest versions
- Removed
distDomain
anddevDomain
paths in favor of dedicatedhosts
configuration object - Removed
paths.images
configuration - Boilerplate now allows multiple email files (
paths.email === '*.html'
) - Removed
grunt-devcode
in favor ofgrunt-preprocess
- Using
grunt-contrib-compass
watch option instead of awatch
sub-task. - Enabled
livereload
feature send
task only allows testing on development environment. Transitory solution while looking for better integration with production environments.
This boilerplate comes with a customized version of the HTML Email Boilerplate.
Sources are located in the src
folder:
email.html
: HTML boilerplatescss/
: SCSS folder_variables.scss
: boilerplate style variables_mixins.scss
: mixins and premailer attributes helpers_base.scss
: common styles_media-queries.scss
: optional media queries for responsive emails_main.scss
: your email stylestyle.scss
: glue stylesheet, don't edit it directly
images
: source images of your emailinc
: optional partials files (requires arender
task to be set)data
: optional JSON files with variables (requires arender
task to be set)
The boilerplate comes with some predefined tasks to cover average email development needs.
dev
Tasks
This tasks runs a watch trigger for changes to sources inside the src
folder and starts a static HTTP server at http://localhost:8000
pointing to the tmp
folder where processed resources are store.
NOTE: This tasks doesn't apply any style inlining.
dist
Tasks
This tasks creates a build from your sources. It creates a folder named dist
next to src
, then compiles your SCSSes and inlines the resulting stylesheet in the HTML source through Premailer. By default, Premailer outputs a text version too.
Images are optimized with jpegtran and OptiPNG.
send
Tasks (was test
before v0.2.3)
Extends dev
by sending the compiled email to any configured recipient.
See Gruntfile.js
source for more options and customizations.
- Connecting from a machine other than localhost
By default tasks refer to http://localhost:8000
as the test URL, anyway you may connect to the test server by pointing to its IP (e.g.: http://192.168.0.10:8000
) or to any other registered alias.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
v0.3.1
- Packages and docs updates.
v0.3.0
- Updated plugins and workflow. See section 0.2 to 0.3 Changes for details.
v0.2.4
- updated grunt-premailer to v0.2.0.
v0.2.3
- bugfixes and updates, send task moved to external grunt plugin, premailer task moved to external grunt plugin. send
task renamed to nodemailer
, test
renamed to send
as in generator-htmlemail.
v0.2.2
- better test handling. Updated dependencies.
v0.2.1
- render task moved to external grunt plugin.
v0.2
- ejs
templates are now statically rendered in development stage by the watch
task. Added open
and devcode
tasks. Fixed some issues with the imagemin
task.
v0.1.4
- compatibility with grunt 0.4+ and contrib plugins
v0.1.3
- removed a couple of unneeded deps. Optimized server
and render
tasks
v0.1.2
- Added support for ejs templating
v0.1.1
- Debugging and polishing
v0.1.0
- Initial release
Copyright (c) 2012-2013 Marco Solazzi Licensed under the MIT license.