Created
May 25, 2012 02:53
-
-
Save edwardhotchkiss/2785481 to your computer and use it in GitHub Desktop.
postage app blog post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var postage = require('postage')('YOUR API KEY'); | |
var options = { | |
recipients: '[email protected]', | |
subject: 'Subject Line', | |
from: '[email protected]', | |
content: { | |
'text/html': '<p>Some awesome content</p>', | |
'text/plain': 'Plain text goes here (if any)' | |
} | |
}; | |
postage.send(options, function callback(error, msg) { | |
if (error) { | |
console.error(error); | |
} else { | |
console.log(message); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment