transacemail
Version:
Transactional Email & Templated Email for NodeJS
24 lines (21 loc) • 399 B
JavaScript
module.exports = {
/**
* Style to embed
*/
styles:["./css/global.css"],
/**
* Mandrill parameters
*/
"mandrill":{
"message":{
/* text: will be taken from j0_thanks.txt */
/* to: will be automatically completed */
subject: "Thank you !",
from_email: "plop@plop.com",
from_name:"Mr Plop"
}
},
sendIf: function(fn){
fn(false);
}
};