I have the following code in Excel to generate and Outlook email with a message.

With OutMail
.To = mailAddress
.Subject = "test mail"
.HTMLBody = "message"
.Display
End With

How do I change the font type (say, in italicized Arial Black), and the color of the message?


imdl