How can i get the CC and BCC values in an inbound email action?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2019 06:26 AM
Hi All,
How can i get the CC and BCC values in an inbound email action?
Thanks,
KUMAR
Labels:
- Labels:
-
Scripting and Coding
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2019 07:24 AM
email.copied contains the email address in the Cc: box
email.to contains the To: and Cc: boxes
I don't think they have a email object for Bcc, but try the above and see if they work in your "Actions" tab of the Inbound Action.
Link to all email objects:
Please mark this response as correct and/or helpful if it assisted you with your question.
Steven

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2019 07:54 AM
Hello Kumar,
As Steven replied you could use email.copied
For example you can add it to the comments
current.comments = "CC: "+ email.copied;