node-red-contrib-email
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "node-red-contrib-email", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "SMTP email node for Node-RED", | ||
@@ -21,3 +21,3 @@ "keywords": [ | ||
"dependencies": { | ||
"nodemailer": "^6.9.12" | ||
"nodemailer": "^6.9.14" | ||
}, | ||
@@ -24,0 +24,0 @@ "node-red": { |
@@ -35,11 +35,12 @@ # node-red-contrib-email | ||
- **from** - The email address of the sender. All email addresses can be plain ‘sender@server.com’ or formatted '“Sender Name” sender@server.com', see Address object for details | ||
- **to** - Comma separated list or an array of recipients email addresses that will appear on the To: field | ||
- **cc** - Comma separated list or an array of recipients email addresses that will appear on the Cc: field | ||
- **bcc** - Comma separated list or an array of recipients email addresses that will appear on the Bcc: field | ||
- **subject** - The subject of the email | ||
- **from** - The email address of the sender. All email addresses can be plain ‘sender@server.com’ or formatted '“Sender Name” sender@server.com', see Address object for details. Can be overwritten with `msg.email.from`. | ||
- **to** - Comma separated list or an array of recipients email addresses that will appear on the To: field. Can be overwritten with `msg.email.to`. | ||
- **cc** - Comma separated list or an array of recipients email addresses that will appear on the Cc: field. Can be overwritten with `msg.email.cc`. | ||
- **bcc** - Comma separated list or an array of recipients email addresses that will appear on the Bcc: field. Can be overwritten with `msg.email.bcc`. | ||
- **subject** - The subject of the email. Can be overwritten with `msg.email.subject`. | ||
- **priority** - Sets message importance headers, either ‘high’, ‘normal’ (default) or ‘low’. Can be overwritten with `msg.email.priority`. | ||
### Message Payload | ||
`msg.payload` can be used for one of the following message versions. Set the node property *payload type* to set the version of your `msg.payload`. | ||
`msg.payload` can be used for one of the following message versions. Set the node property **payload type** to set the version of your `msg.payload`. | ||
@@ -46,0 +47,0 @@ - **text** - The plaintext version of the message as an Unicode string, Buffer, Stream or an attachment-like object ({path: ‘/var/data/…'}). If you're sending a `msg.payload` of type number or boolean, then it is converted to string. |
@@ -99,2 +99,3 @@ module.exports = function (RED) { | ||
amp: m.amp, | ||
priority: m.priority || config.priority || "normal" | ||
}; | ||
@@ -101,0 +102,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25463
132
202
Updatednodemailer@^6.9.14