Skip to content

Commit

Permalink
Allow arrays to be passed for to:cc:bcc fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Andris Reinman committed Nov 27, 2012
1 parent 99bac04 commit 9968d4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -407,9 +407,9 @@ var smtpTransport = nodemailer.createTransport("SMTP",{
The following are the possible fields of an e-mail message: The following are the possible fields of an e-mail message:


- **from** - The e-mail address of the sender. All e-mail addresses can be plain `sender@server.com` or formatted `Sender Name <sender@server.com>` - **from** - The e-mail address of the sender. All e-mail addresses can be plain `sender@server.com` or formatted `Sender Name <sender@server.com>`
- **to** - Comma separated list of recipients e-mail addresses that will appear on the `To:` field - **to** - Comma separated list or an array of recipients e-mail addresses that will appear on the `To:` field
- **cc** - Comma separated list of recipients e-mail addresses that will appear on the `Cc:` field - **cc** - Comma separated list or an array of recipients e-mail addresses that will appear on the `Cc:` field
- **bcc** - Comma separated list of recipients e-mail addresses that will appear on the `Bcc:` field - **bcc** - Comma separated list or an array of recipients e-mail addresses that will appear on the `Bcc:` field
- **replyTo** - An e-mail address that will appear on the `Reply-To:` field - **replyTo** - An e-mail address that will appear on the `Reply-To:` field
- **inReplyTo** - The message-id this message is replying - **inReplyTo** - The message-id this message is replying
- **references** - Message-id list - **references** - Message-id list
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{ {
"name": "nodemailer", "name": "nodemailer",
"description": "Easy to use module to send e-mails, supports unicode and SSL/TLS", "description": "Easy to use module to send e-mails, supports unicode and SSL/TLS",
"version": "0.3.32", "version": "0.3.33",
"author" : "Andris Reinman", "author" : "Andris Reinman",
"maintainers":[ "maintainers":[
{ {
Expand All @@ -25,7 +25,7 @@
} }
], ],
"dependencies": { "dependencies": {
"mailcomposer": ">= 0.1.19", "mailcomposer": ">= 0.1.23",
"simplesmtp": ">= 0.1.22", "simplesmtp": ">= 0.1.22",
"optimist": "*" "optimist": "*"
}, },
Expand Down

0 comments on commit 9968d4f

Please sign in to comment.