1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

Updated Email (markdown)

Neil Kolban 2016-03-08 19:37:44 -06:00
parent 9284ffb47d
commit 57e4950319

@ -16,7 +16,7 @@ As of 2016-03-06, the node has dependencies on:
---
## Reading emails
The current implementation uses the [IMAP](https://en.wikipedia.org/wiki/Internet_Message_Access_Protocol) protocol to interact with a back-end IMAP provider. The very last email seen is received and the message added to an emitted event. If the email body is plain text, it is added to `msg.payload`. If the email body is HTML, it is added to `msg.html`. The subject line of the email is propagated in `msg.topic`.
The current implementation uses the [IMAP](https://en.wikipedia.org/wiki/Internet_Message_Access_Protocol) protocol to interact with a back-end IMAP provider. The very last email seen is received and the message added to an emitted event. If the email body is plain text, it is added to `msg.payload`. If the email body is HTML, it is added to `msg.html`. The subject line of the email is propagated in `msg.topic`. The headers for the email are available in `msg.header`. The posting date of the email is available in `msg.date`. The sender email address is available in `msg.from`.
---