I am creating an email message from within Progress 9.1d (XP).
I can create the message using
OutMsg = OutObj:CreateItem(0).
outmsg:TO = emailadd.
OutMsg:Subject = esubject + STRING(counter).
OutMsg:Body = body.
The problem I am having is with the body.
I can use chr(10) to give a new line within the record.
What I also want to do is to set Bold On and Bold Off.
Is there a Chr value that will do this? Or am I just limited to plain text and CR and LF?
Thanks for any ideas.
I can create the message using
OutMsg = OutObj:CreateItem(0).
outmsg:TO = emailadd.
OutMsg:Subject = esubject + STRING(counter).
OutMsg:Body = body.
The problem I am having is with the body.
I can use chr(10) to give a new line within the record.
What I also want to do is to set Bold On and Bold Off.
Is there a Chr value that will do this? Or am I just limited to plain text and CR and LF?
Thanks for any ideas.