- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
How do I remove borders around text lines and put a blank line between text in an automated ODS email?
My Code
OPTIONS EMAILSYS=SMTP
EMAILHOST="SMTP.Company.com";
FILENAME MyMail EMAIL TO=("Sally.J@Company.com")
SUBJECT="Testing Proc Report with colors"
TYPE="text/html";
ODS ESCAPECHAR='^';
ODS HTML BODY=MYMAil BODY=MyMail STYLE=HTMLBlue;
ODS TEXT="^S={FONT_SIZE=12PT} Good Morning:";
ODS TEXT="^S={FONT_SIZE=12PT} ";
ODS TEXT="^S={FONT_SIZE=12PT} The Directory Tree for &Companies. &Types. HAS STARTED running.";
TITLE; /*Clear TITLE*/
FOOTNOTE; /*Clear Footnote*/
%Report_Summary_Email(Notes)
ODS TEXT="^S={FONT_SIZE=12PT} Any questions, please reach out to Joseph.F@e.com or Sally.J@e.com.";
ODS TEXT="^S={FONT_SIZE=12PT} ";
ODS TEXT="^S={FONT_SIZE=12PT} Thanks,";
ODS TEXT="^S={FONT_SIZE=12PT} ";
ODS TEXT="^S={FONT_SIZE=12PT} Sally";
ODS HTML CLOSE;
I want a blank line after Good Morning and Thanks.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The company name is still visible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, how do I edit this or delete it, to remove the company name? It tells me it's final.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you want to force a line break in HTML, try adding <BR> tags in the text.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content