winston-amazon-ses
v0.1.4
Published
A mail transport for winston using Amazon Simple Email Service (SES)
Downloads
14
Readme
winston-amazon-ses
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.