I am using mailitem.HTMLBody to process the text of an email body.
The entire body of the email can be accessed through mailitem.HTMLBody.
How can I change the font of the entire email body in C#? e.g Set font size as 10.5 and font as Consolas
Outlook.MailItem mailItem = (Outlook.MailItem)selection[1];
mailItem.HTMLBody = "<font size= 10>";
This does not work.
fontis deprecated. )