0.1.1 • Published 11 years ago

intents-mailgun v0.1.1

Weekly downloads
6
License
-
Repository
-
Last release
11 years ago

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: 'me@gmail.com',
  sender: 'no-reply@appload.pl',
  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: 'me@gmail.com',
  sender: 'no-reply@appload.pl',
  subject: 'Some subject',
  text: 'Some text'}, function(error) {
    if(error) {
      console.error(error);
    }
  });