#Grunt Email Boilerplate
A grunt-ready HTML email template based on HTML Email Boilerplate.
##Features
- 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-devcode (a custom version, actually)
- test email delivery with grunt-nodemailer and NodeMailer
##Requirements
- Node.js >= 0.8.11 (install wiki)
- Grunt-cli >= 0.1.7 and Grunt >=0.4.1 (
npm install grunt-cli -g
) - Ruby >= 1.8.7 (installers)
- Compass >= 0.12.2 (
gem install compass
) - Premailer >= 1.7.3 (
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 (email.html
andscss/_main.scss
). By default, Grunt will try to open the email preview in your default browser; alternatively, preview URL ishttp://localhost:8000/_tmp.email.html
.
###Sources
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 emailcss
: destination folder of compiled SCSS sourcesinc
: optional partials files (requires arender
task to be set)data
: optional JSON files with variables (requires arender
task to be set)
###Default Tasks
The boilerplate comes with some predefined tasks to cover average email development needs.
dev
Tasks
This tasks runs a watch trigger for changes to the scss
folder and starts a static HTTP server at http://localhost:8000
pointing to the src
folder.
dist
Tasks
This tasks creates a build from your sources. It creates a folder named dist{YYYYMMDD}
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
and dist
tasks by sending the compiled email to any configured recipient. In order to use this task you have to provide a target environment by running either send:dev
or send:dist
.
To customize email transports and recipients refer to the send
tasks in Gruntfile.js
.
###Tasks Customization
See Gruntfile.js
source for more options and customizations.
###Tips and Tricks
- 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.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.