oSendMail Object Question

I am modifying the Mail Codeunit to include a standard message when the interaction log is run. I am trying to format the Body of the email to be in HTML, but am having little success. I checked the object browser for the standard outlook mailitem, as I believe the ‘NS Outlook Synchronization Handler’.OSendMail is just a wrapper for that object. It appears that the BodyFormat property accepts 2 for HTML format, however I am not getting it in HTML. Here is a sample of what I am doing. Any ideas? OSendMail.“To” := ToName; OSendMail.CC := CCName; OSendMail.Subject := Subject; Body:= ‘This is a test of the emergency broadcast system…’; IF ISCLEAR(BSTRConverterBody) THEN CREATE(BSTRConverterBody); IF Body <> ‘’ THEN BEGIN BSTRConverterBody.ResetBSTR; BSTRConverterBody.AppendNextStringPortion(Body); END; OSendMail.Body := BSTRConverterBody; OSendMail.BodyFormat(2); IF ISCLEAR(BSTRConverterAttachFileName) THEN CREATE(BSTRConverterAttachFileName); IF AttachFileName <> ‘’ THEN BEGIN BSTRConverterAttachFileName.ResetBSTR; BSTRConverterAttachFileName.AppendNextStringPortion(AttachFileName); OAttachments := OSendMail.Attachments; OAttachment := OAttachments.Add(BSTRConverterAttachFileName); END; OSendMail.OpenDialog := OpenDialog; MailSent := OSendMail.Send; ErrorNo := OSendMail.ErrorStatus; OApplication.Logoff;