You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the following script to send email dynamically
var mail = new GlideEmailOutbound();
mail.setSubject('Hello darkness, my old friend');
mail.addRecipient('[email protected]');
mail.addAddress('cc', '[email protected]');
mail.setBody("I've come to talk with you again");
mail.save();