hook.io-mailer

0.3.1 • Public • Published

hook.io-mailer

a simple Hook for sending emails

Hook.io config.json settings

{
  "mailer": {
    "host": "localhost",
    "username": "foo@bar.com",
    "password": "1234",
    "domain": "localhost"
  }
}

Hook.io Events Names

sendEmail sends email

emailSent event emitted when email is successful sent:

error event emitted when email cannot send:

 
//
// emailOptions is a 1:1 mapping to github.com/marak/node_mailer API 
//
var emailOptions = {
  to      : 'marak.squires@gmail.com',
  from    : 'mailer@hook.io',
  subject : 'This is an email from hook.io mailer',
  body    : 'I would like a grilled cheese please.'
};
 
myhook.emit('sendEmail', emailOptions);
 
 

Readme

Keywords

none

Package Sidebar

Install

npm i hook.io-mailer

Weekly Downloads

4

Version

0.3.1

License

none

Last publish

Collaborators

  • jameson
  • marak