Aug 20, 2003 #1 mbair Programmer Aug 13, 2003 22 US How to put in a carriage return in the body of a Louts Notes email!
Aug 21, 2003 #2 marksnow Programmer Oct 30, 2002 39 AU if you are using vba code to populate the email you can simply use chr(10). ie. bodyText = "First line" & chr(10) & "Second line" Upvote 0 Downvote
if you are using vba code to populate the email you can simply use chr(10). ie. bodyText = "First line" & chr(10) & "Second line"