intents-mailgun

0.1.1 • Public • Published

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('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);
    }
  });

Readme

Keywords

none

Package Sidebar

Install

npm i intents-mailgun

Weekly Downloads

3

Version

0.1.1

License

none

Last publish

Collaborators

  • rafalsobota