0.1.4 • Published 11 years ago

winston-amazon-ses v0.1.4

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

winston-amazon-ses Build Status

A email transport for winston using Amazon Simple Email Service (SES) inspired in winston-mail.

Installation

Installing npm (node package manager)

  $ curl http://npmjs.org/install.sh | sh

Installing winston-amazon-ses

  $ npm install winston
  $ npm install winston-amazon-ses

Usage

  var winston = require('winston');

  //
  // Requiring `winston-amazon-ses` will expose
  // `winston.transports.SES`
  //
  require('winston-amazon-ses').SES;

  winston.add(winston.transports.SES, options);

The SES transport uses node-amazon-ses behind the scenes. Options are the following:

  • to: The address(es) you want to send to. required
  • accessKey: AWS SES access key. required
  • secretKey: AWS SES secret key. required
  • from: The address you want to send from. (default: winston@[server-host-name])
  • subject Subject for email (default: winston: {{level}} {{msg}})
  • level: Level of messages that this transport should log.
  • silent: Boolean flag indicating whether to suppress output.
0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago