Problem with HTMLBody in Redemption

Joined
Sep 11, 2007
Messages
3
Reaction score
0
New problem -

I can't seem to retrieve the HTMLBody content of a message.

I'm using this code which returns nothing for htmlbody - even though the
same message using outlook does return the htmlbody....

Code:
Set oApp = New Outlook.Application
Set oMess = oApp.CreateItemFromTemplate("C:\test.msg")
Set rMess = New Redemption.SafeMailItem
rMess.Item = oMess
If rMess.BodyFormat = olFormatHTML Then
	rtf.Text = rMess.HTMLBody 'YIELDS NOTHING
	rtf.Text = oMess.HTMLBody 'YIELDS THE MESSAGE BODY
Else
	rtf.Text = rMess.Body
End If

Any clues?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top