Send an Email to any person as cc & bcc
I have explained how we can Send an Email as cc & bcc in ServiceNow.
If you have any feedback related to the scripting part, please write it in the comment box.
==================Email Scripts====================
(function runMailScript( /* GlideRecord */ current, /* TemplatePrinter */ template, /* Optional EmailOutbound */ email, /* Optional GlideRecord */ email_action, /* Optional GlideRecord */
event) {
// Add your code here email.addAddress('cc', '[email protected]', 'Prashant Kumar'); email.addAddress('bcc', '[email protected]', 'Prashant Kumar');
})(current, template, email, email_action, event);
Best Regards,
Prashant
If my article helped you in any way, please mark this as helpful and make this a bookmark.
Labels:
https://www.servicenow.com/community/developer-articles/send-an-email-to-any-person-as-cc-bcc/ta-p/2306060
