How do I add a cc in an email notification?? Please help!

paradise623
Giga Expert

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!

1 ACCEPTED SOLUTION

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);


View solution in original post

24 REPLIES 24

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);


Does this look about right? How will I be able to tell if the email was actually sent to the "Alternate Contact"? Email log?



Screen Shot 2016-04-05 at 10.09.13 PM.png


If you want to see what users were copied, you can see that in the email log. Personalize the layout and add a column called "Copied". That will show any users who were added as CC or BCC recipients.



One thing you can do to test is to have two lines in your script, one with a hard-coded addressee, and one referencing your variable. That way, the hard coded one acts a little like a log statement, and might give you better insight if the referenced addressee isn't appearing in the copied field.




Copied Email Log.JPG


Hi Mike,


I am asking about the Notification you have customized to send this email.



find_real_file.png



Can you share that notification form ?



Thanks,


Mihir


Great Idea! I will try that!