- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2016 12:29 PM
Hi All,
Please help I am looking to add a cc box in an email notification but I can't seem to locate how to do this. I see a bunch of things in the community but it appears that it all involves scripting. Is there anyway around this?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2016 06:52 PM
That is definitely doable, too. So, rather than putting in an address and name manually, you can reference a field/variable from the table.
So, you could do something like this to send a CC to the manager of the current assignment group on an incident email:
email.addAddress("cc", current.assignment_group.manager.email, current.assignment_group.manager.name);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 09:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 09:21 AM
Is there any email triggering after matching this condition you have written in the second screenshot?
I think 3rd line of the condition you have used is not correct.
Thanks,
Mihir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 10:34 AM
Yes, an email triggers. It just doesn't trigger to the "'cc"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 10:38 AM
Is "wo_user_alt_name" is a reference type field which is referencing to users table ?
Thanks,
Mihir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 11:24 AM
The field I need to pull the "CC" email address from is called "Alternate Email". The information in "Alternate Email" autofills from the "Alternate Name" field. Once the field "Alternate Name" is entered in by the user, then "Alternate email" is autofilled with the user email. All this information is pulled from the user profile. There is a script being used to auto fill the "Alternate Email" based on the user name "Alternate Name". The field "Alternate Name" is a reference field.
I hope I didn't confuse you.