Is there any option to override sender information to a custom email instead of the instance email address for "Schedule reports"?Issue Requirement here is to mask the email address of of the instance with custom email address when email of scheduled report is sent to the intended recipients.Resolution1.Create notification email script with name as - setEmailSender (function runMailScript(/* GlideRecord */ current, /* TemplatePrinter */ template, /* Optional EmailOutbound */ email, /* Optional GlideRecord */ email_action, /* Optional GlideRecord */ event) { email.setFrom("ABC <EMAIL_ADDRESS>"); })(current, template, email, email_action, event); 2.In schedule report form, there is a HTML enabled field with label as Introductory Message (Database name - Report Body).Since this is HTML enabled field we can call notification script from this field.Call notification email script using following syntax - ${mail_script:setEmailSender}When the report executes, the notification email script "setEmailSender" is called. When the email script executes, it sets the sender of the email as value provided in setForm method.