Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-red-contrib-email

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-email - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc