Email Data Properties
The text replacement engine can use text from the inbound email, as well as from previous actions. The very first action in a rule will contain only the default set of data from the inbound email. Any actions after the first action will also include any variables that were output from previous actions.
The default variables that are generated for every inbound email are:
| Property | Description |
|---|---|
email.subject | The subject line of the email |
email.mailbox | The email mailbox from which we retrieved the message |
email.messageid | The message ID header generated by the email sender's client |
email.from.address | The email address of the message sender |
email.from.display | The email display name of the message sender |
email.to.[0].address | The first email address the email was addressed to |
email.to.[0].display | The display name of the first email address the email was addressed to |
email.to.[n].address | The n'th email address the email was addressed to |
email.to.[n].display | The display name of the n'th email address the email was addressed to |
email.cc.[0].address | The first email address the email was CC'd to |
email.cc.[0].display | The display name of the first email address the email was CC'd to |
email.cc.[n].address | The n'th email address the email was CC'd to |
email.cc.[n].display | The display name of the n'th email address the email was CC'd to |
email.body | The body of the email. See details below. |
email.bodyparts.plaintext | The plaintext body of the email. |
email.bodyparts.html | The HTML body of the email (only if the email includes an HTML body). |
email.bodyparts.html_to_plaintext | The HTML body of the email with all HTML tags removed. |
email.body_stripped.visible | The part of email.body not including the sender's email signature or any quoted emails. If we don't find any signature or quoted text, this will include the entire body. |
email.body_stripped.signature | The email sender's signature block at the bottom of their email. |
email.body_stripped.quoted | The quoted copied of previously sent messages found at the bottom of the email. |