Skip to content
This repository was archived by the owner on Jan 11, 2019. It is now read-only.

developher-net/email-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

email-builder

Basic build system for processing HTML + SCSS into an email-ready file with inlined CSS

Requirements

  • XCode
  • Ruby 1.9.x
  • Compass
  • Hpricot
  • Premailer

Install compass

http://compass-style.org/install/

gem update --system

gem install compass

Install Premailer

gem install hpricot

gem install premailer

How to Use

  • Any CSS that should end up inline (almost everything) should be placed in src/css/scss/inline.scss or a child file that gets included when that file is built.

  • Any CSS that should remain in the document head (media queries mostly) should be placed in src/css/scss/head.scss or a child file included when that file is built.

  • Images should go into the assets folder

  • From the command line at the root of your project, run "ant compile". The results will be dumped out into the build folder.

Configuration Options

Absolute Image URLs

Your images need to have an absolute URL like <img src="http://example.com/example.jpg"/> instead of just a relative URL <img src="../example.jpg">. The build script will automatically update all your image tags if you set the baseURL property at the top of build.xml:

<property name="baseURL" value="http://example.com" />

Development vs. Production

By default, email builder generates dev-appropriate files (CSS has comments for debugging purposes). To output production-ready files with CSS comments removed and compressed, the environment env property in build.xml from dev to prod:

<property name="env" value="prod" />

Cache-Busting

By default this script is configured to do Gmail cache busting by appending the Git revision to image URLs. To make this work for other version control systems, set the source.control property at the top of build.xml. Default is git. Supported values are git,hg,svn:

<property name="source.control" value="git" />

Inspiration from:

About

Basic build system for processing HTML + SCSS into an email-ready file with inlined CSS

Resources

License

Stars

Watchers

Forks

Packages

No packages published