G
Guest
Hi, how would you go about creating an email message with HTML content. This
is what I'm doing ...
OutlookSession Outlook = new OutlookSession();
EmailMessage msg = new EmailMessage();
msg.To.Add(new Recipient("(e-mail address removed)"));
msg.Subject = "My Subject";
msg.BodyText = EmailContent;
msg.Send(Outlook.EmailAccounts[0]);
but of course EmailMessage doesn't have a property to change the header
content type.
Any help much appreciated.
Regards
Sean
is what I'm doing ...
OutlookSession Outlook = new OutlookSession();
EmailMessage msg = new EmailMessage();
msg.To.Add(new Recipient("(e-mail address removed)"));
msg.Subject = "My Subject";
msg.BodyText = EmailContent;
msg.Send(Outlook.EmailAccounts[0]);
but of course EmailMessage doesn't have a property to change the header
content type.
Any help much appreciated.
Regards
Sean