Usage Note 38670: Masking e-mail addresses in the FROM field when you use Base SAS® in the z/OS environment to send e-mail
When you code an e-mail address in the FROM field using SAS software on the z/OS platform, the e-mail that you send indicates both the name of the person who submitted the job, and the name of the person indicated in the FROM field. For example, the FROM field might show userid@MVS, on behalf of SASHELP.
You can mask this field to indicate that the email originates from SASHELP. Code the SENDER= value to be the same as the FROM= value. After doing this, the “on behalf of” is not displayed. Follow the code sample below:
FILENAME HTMMAIL EMAIL "userid@comain"
SUBJECT="Testing sending e-mail from the mainframe"
CONTENT_TYPE='TEXT/HTML'
TO="target_userid@domain"
FROM="sending_userid@domain"
SENDER="sending_userid@domain";
Operating System and Release Information
| SAS System | Base SAS | z/OS | 9 TS M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Masking e-mail addresses in the FROM field when you use Base SAS® in the z/OS environment to send e-mail.
| Date Modified: | 2011-05-03 11:00:12 |
| Date Created: | 2010-02-09 13:43:11 |