Email from Progress 9.1D BOld On Off

tanilba

New Member
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.
 
Hello,
Insert HTML code is simple with OUTLOOK OLE AUTOMATION, so u can also choose rtf text editor from ole automation, and then using rtf tag to active and desactive bold. (To know wich procedure u can run, explore msout.olb with progress com object viewer from pro tools
 
Back
Top