0.0.3 • Published 9 years ago

emailify v0.0.3

Weekly downloads
10
License
-
Repository
github
Last release
9 years ago

build status

Emailify makes your html documents a bit more email-safe

This is the node.js version of premailer.

Features

HTML Example

Turns this:

<html>
	<head>
		<style>
			h4 {
				color: #ff6600;
			}
		</style>
	</head>
	<body>
		<h4>orange header</h4>
	</body>
</html>

Into this:

<html>
	<head>
	</head>
	<body>
		<h4 style="color: #ff6600;">orange header</h4>
	</body>
</html>

Testing Compatibility Screenshot

Alt command line

Requirements

Installation

npm install emailify -g

Command Line

Usage

-i [input_html] -o [output_html]

Options:
  -i, --input    [required]
  -o, --output  
  -t, --test     [default: false]
  -c, --comments [default: false]

To emailify a document, use this command:

emailify -i /my/html/file.html -o /my/html/emailified.html

If you intend to keep comments, do the following:

emailify -c true -i /my/html/file.html -o /my/html/emailified.html

You can easily test a document for compatibility by adding the -t flag:

emailify -i /my/html/file.html -o /my/html/emailified.html -t

Ommit -o if you just want to see what emailify produces:

emailify -i /my/html/file.html

Node.js API

.parse(content, options, callback)

parses html content into email-safe html

  • content - the html content
  • options - test - runs test against code for compatibility
var emailify = require('emailify'),
fs           = require('fs')

emailify.parse(fs.readFileSync('/my/email/newsletter.html', 'utf8'), function(err, content) {
	//send newsletter
});

.load(file, options, callback)

loads a html file

var emailify = require('emailify'),
fs           = require('fs')

emailify.load('/my/email/newsletter.html', { test: true }, function(err, content, warnings) {
	//send newsletter
});