From 9968d4fb75206e9eed10937e3fad0d0a6133af0e Mon Sep 17 00:00:00 2001 From: Andris Reinman Date: Tue, 27 Nov 2012 14:46:40 +0200 Subject: [PATCH] Allow arrays to be passed for to:cc:bcc fields --- README.md | 6 +++--- package.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ece4084d..250e41d3 100644 --- a/README.md +++ b/README.md @@ -407,9 +407,9 @@ var smtpTransport = nodemailer.createTransport("SMTP",{ 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 ` - - **to** - Comma separated list 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 - - **bcc** - Comma separated list of recipients e-mail addresses that will appear on the `Bcc:` field + - **to** - Comma separated list or an array of recipients e-mail addresses that will appear on the `To:` field + - **cc** - Comma separated list or an array of recipients e-mail addresses that will appear on the `Cc:` 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 - **inReplyTo** - The message-id this message is replying - **references** - Message-id list diff --git a/package.json b/package.json index 848d91da..444d9b2a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nodemailer", "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", "maintainers":[ { @@ -25,7 +25,7 @@ } ], "dependencies": { - "mailcomposer": ">= 0.1.19", + "mailcomposer": ">= 0.1.23", "simplesmtp": ">= 0.1.22", "optimist": "*" },