logo

NJP

Send an Email to any person as cc & bcc

Import · Aug 05, 2022 · article

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:

image

View original source

https://www.servicenow.com/community/developer-articles/send-an-email-to-any-person-as-cc-bcc/ta-p/2306060