VBDotNetProgrammer
Programmer
Hi,
I create an email item like:
Dim objOutlook As New Outlook.Application()
Dim newMail As Outlook.MailItemClass
I then use the
newMail.HTMLBody = pBody
where pBody = "<html><head><body><font size='2' face='Courier'>Hello \n GoodBye</font></body></head></html>"
say.
Now my problem is it displays Hello \n Goodbye instead of inserting the newline like it should!
Has anyone got any ideas why its doing that since it picks up all the other html just fine?
Thanks
I create an email item like:
Dim objOutlook As New Outlook.Application()
Dim newMail As Outlook.MailItemClass
I then use the
newMail.HTMLBody = pBody
where pBody = "<html><head><body><font size='2' face='Courier'>Hello \n GoodBye</font></body></head></html>"
say.
Now my problem is it displays Hello \n Goodbye instead of inserting the newline like it should!
Has anyone got any ideas why its doing that since it picks up all the other html just fine?
Thanks