This project is intented to use with Intents module.
Details about Intents are at Intents project page
npm install intents
in Intents configuration at ./config/default.coffee:
mailgun = require 'intents-mailgun'
@mail = mailgun
key: 'MyMailgunKey'
in app code:
var mail = require('intents').mail;
mail.send({
recipient: 'me@gmail.com',
sender: 'no-reply@appload.pl',
subject: 'Some subject',
text: 'Some text'}, function(error) {
if(error) {
console.error(error);
}
});
var intentsMailgun = require('intents-mailgun');
var mail = intentsMailgun({key: 'MyMailgunKey'});
mail.send({
recipient: 'me@gmail.com',
sender: 'no-reply@appload.pl',
subject: 'Some subject',
text: 'Some text'}, function(error) {
if(error) {
console.error(error);
}
});