intents-mailgun
v0.1.1
Published
Mailgun integration with Intents.
Downloads
4
Readme
Mailgun integration for Intents
This project is intented to use with Intents module.
Example as part of Intents
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: '[email protected]',
sender: '[email protected]',
subject: 'Some subject',
text: 'Some text'}, function(error) {
if(error) {
console.error(error);
}
});
Example as standalone module
var intentsMailgun = require('intentsMailgun');
var mail = intentsMailgun({key: 'MyMailgunKey'});
mail.send({
recipient: '[email protected]',
sender: '[email protected]',
subject: 'Some subject',
text: 'Some text'}, function(error) {
if(error) {
console.error(error);
}
});