emailjs/Readme.md

155 lines
5.2 KiB
Markdown
Raw Normal View History

2013-10-07 17:43:58 +00:00
# emailjs (v0.3.6) [![Build Status](https://secure.travis-ci.org/eleith/emailjs.png)](http://travis-ci.org/eleith/emailjs)
2011-02-24 23:02:24 +00:00
2011-12-09 11:13:37 +00:00
send emails, html and attachments (files, streams and strings) from node.js to any smtp server
2011-02-23 21:23:37 +00:00
2011-12-09 11:28:25 +00:00
## INSTALLING
2011-02-23 21:23:37 +00:00
2011-02-24 23:02:24 +00:00
npm install emailjs
2011-02-23 21:23:37 +00:00
2011-12-09 11:28:25 +00:00
## FEATURES
2011-02-24 23:02:24 +00:00
- works with SSL and TLS smtp servers (ex: gmail)
- supports smtp authentication (PLAIN, LOGIN, CRAMMD5)
2011-02-23 21:23:37 +00:00
- emails are queued and the queue is sent asynchronously
2011-02-24 23:02:24 +00:00
- supports sending html emails and emails with multiple attachments (MIME)
2011-12-09 11:15:13 +00:00
- attachments can be added as strings, streams or file paths
2014-01-04 19:47:08 +00:00
- works with nodejs 0.3.8 and above
2011-02-23 21:23:37 +00:00
2011-12-09 11:28:25 +00:00
## REQUIRES
2011-02-23 21:23:37 +00:00
- access to an SMTP Server (ex: gmail)
2011-12-09 11:28:25 +00:00
## EXAMPLE USAGE - text only emails
2011-02-24 23:05:34 +00:00
2011-12-09 11:20:54 +00:00
```javascript
var email = require("./path/to/emailjs/email");
var server = email.server.connect({
user: "username",
password:"password",
host: "smtp.gmail.com",
ssl: true
});
// send the message and get a callback with an error or details of the message that was sent
server.send({
text: "i hope this works",
from: "you <username@gmail.com>",
to: "someone <someone@gmail.com>, another <another@gmail.com>",
cc: "else <else@gmail.com>",
subject: "testing emailjs"
}, function(err, message) { console.log(err || message); });
```
2011-02-24 23:05:34 +00:00
2011-12-09 11:28:25 +00:00
## EXAMPLE USAGE - html emails and attachments
2011-02-24 23:05:34 +00:00
2011-12-09 11:20:54 +00:00
```javascript
var email = require("./path/to/emailjs/email");
var server = email.server.connect({
user: "username",
password:"password",
host: "smtp.gmail.com",
ssl: true
});
var message = {
2011-12-09 11:20:54 +00:00
text: "i hope this works",
from: "you <username@gmail.com>",
to: "someone <someone@gmail.com>, another <another@gmail.com>",
cc: "else <else@gmail.com>",
subject: "testing emailjs",
attachment:
[
{data:"<html>i <i>hope</i> this works!</html>", alternative:true},
{path:"path/to/file.zip", type:"application/zip", name:"renamed.zip"}
]
2011-12-09 11:20:54 +00:00
};
// send the message and get a callback with an error or details of the message that was sent
server.send(message, function(err, message) { console.log(err || message); });
// you can continue to send more messages with successive calls to 'server.send',
// they will be queued on the same smtp connection
// or you can create a new server connection with 'email.server.connect'
// to asynchronously send individual emails instead of a queue
```
2011-02-24 23:02:24 +00:00
# API
## email.server.connect(options)
// options is an object with the following keys
options =
{
user // username for logging into smtp
2011-02-24 23:02:24 +00:00
password // password for logging into smtp
host // smtp host
port // smtp port (if null a standard port number will be used)
ssl // boolean or object {key, ca, cert} (if exists, ssl connection will be made)
tls // boolean (if true, starttls will be initiated)
timeout // max number of milliseconds to wait for smtp responses (defaults to 5000)
domain // domain to greet smtp with (defaults to os.hostname)
}
## email.server.send(message, callback)
// message can be a smtp.Message (as returned by email.message.create)
// or an object identical to the first argument accepted by email.message.create
// callback will be executed with (err, message)
// either when message is sent or an error has occurred
## message
2011-02-24 23:02:24 +00:00
2011-12-09 10:57:52 +00:00
// headers is an object ('from' and 'to' are required)
// returns a Message object
// you can actually pass more message headers than listed, the below are just the
// most common ones you would want to use
headers =
{
text // text of the email
from // sender of the format (address or name <address> or "name" <address>)
to // recipients (same format as above), multiple recipients are separated by a comma
cc // carbon copied recipients (same format as above)
bcc // blind carbon copied recipients (same format as above)
subject // string subject of the email
attachment // one attachment or array of attachments
2011-12-09 10:57:52 +00:00
}
2011-02-24 23:02:24 +00:00
## attachment
2011-02-24 23:02:24 +00:00
2011-12-09 10:57:52 +00:00
// can be called multiple times, each adding a new attachment
// options is an object with the following possible keys:
2011-12-09 10:54:58 +00:00
2011-12-09 10:57:52 +00:00
options =
{
// one of these fields is required
path // string to where the file is located
data // string of the data you want to attach
stream // binary stream that will provide attachment data (make sure it is in the paused state)
// better performance for binary streams is achieved if buffer.length % (76*6) == 0
// current max size of buffer must be no larger than Message.BUFFERSIZE
2011-12-09 10:54:58 +00:00
2011-12-09 10:57:52 +00:00
// optionally these fields are also accepted
type // string of the file mime type
name // name to give the file as perceived by the recipient
alternative // if true, will be attached inline as an alternative (also defaults type='text/html')
inline // if true, will be attached inline
encoded // set this to true if the data is already base64 encoded, (avoid this if possible)
headers // object containing header=>value pairs for inclusion in this attachment's header
2012-03-28 16:12:33 +00:00
related // an array of attachments that you want to be related to the parent attachment
2011-12-09 10:57:52 +00:00
}
2011-02-24 23:02:24 +00:00
2011-02-23 21:23:37 +00:00
## Authors
eleith
## Testing
2011-12-09 11:24:36 +00:00
npm install -d
npm test
## Contributions
issues and pull requests are welcome