mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Bump email node version
This commit is contained in:
parent
17255b7bbf
commit
677864482e
@ -70,11 +70,11 @@
|
||||
|
||||
<script type="text/x-red" data-help-name="e-mail">
|
||||
<p>Sends the <code>msg.payload</code> as an email, with a subject of <code>msg.topic</code>.</p>
|
||||
<p>You may optionally set <code>msg.from</code> in the payload which will override the <code>node.userid</code>
|
||||
default value.</p>
|
||||
<p>The default message recipient can be configured in the node, if it is left
|
||||
blank it should be set using the <code>msg.to</code> property of the incoming message. If left blank
|
||||
you can also specify <code>msg.cc</code> and/or <code>msg.bcc</code> properties.</p>
|
||||
<p>You may optionally set <code>msg.from</code> in the payload which will override the <code>userid</code>
|
||||
default value.</p>
|
||||
<p>The payload can be html format.</p>
|
||||
<p>If the payload is a binary buffer then it will be converted to an attachment.
|
||||
The filename should be set using <code>msg.filename</code>. Optionally <code>msg.description</code> can be added for the body text.</p>
|
||||
|
@ -39,13 +39,14 @@ Uses the *imap* npm module.
|
||||
|
||||
### Output
|
||||
|
||||
Sends the `msg.payload` as an email, with a subject of `msg.topic`. You may
|
||||
optionally override the from email address by setting `msg.from` otherwise the
|
||||
node will use the `node.userid` setting.
|
||||
Sends the `msg.payload` as an email, with a subject of `msg.topic`.
|
||||
|
||||
The default message recipient can be configured in the node, if it is left
|
||||
blank it should be set using the `msg.to` property of the incoming message.
|
||||
|
||||
You may optionally override the *from* email address by setting `msg.from`,
|
||||
otherwise the node will use the `userid` setting from the server connection.
|
||||
|
||||
The payload can be html format.
|
||||
|
||||
If the payload is a binary buffer then it will be converted to an attachment.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "node-red-node-email",
|
||||
"version": "0.1.10",
|
||||
"version": "0.1.11",
|
||||
"description": "Node-RED nodes to send and receive simple emails",
|
||||
"dependencies": {
|
||||
"nodemailer": "^1.11.0",
|
||||
|
Loading…
Reference in New Issue
Block a user