Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 747 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 747 Bytes

#postmark

A Postmark plugin for Mixdown or any Broadway-compatible plugin pattern. Simple wrapper for postmark.js.

Usage

Config

The only required option is the API key, but you can provide any option accepted by send() and it will set it as a default.

"plugins": {
	"postmark": {
		"module": 'mixdown-postmark',
		"options": {
			"apikey": 'POSTMARK_API_TEST'
		}
	}
}

Sending a message

app.plugins.postmark.send({
	"From" : "[email protected]",
	"To" : "[email protected]",
	"Cc" : "[email protected]",
	"Bcc": "[email protected]",
	"Subject" : "Test",
	"HtmlBody" : "<b>Hello</b>",
	"TextBody" : "Hello",
}, function (error, result) {
	// ok then
})