when I write the code as below the font and the size are correct but the signature is missing... Do you know how to proceed to add my signature already created in Outlook?
Sub mail_outlook()
Dim OutApp As Object
Dim OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With OutMail
.SentOnBehalfOfName = "xxxxxxxxxxxxxxxxxx"
.Display
.To = "xxxxxxxxxxxxxxxxxx"
.CC = "xxxxxxxxxxxxxxxxxx"
.BCC = ""
.Subject = "Report"
strbody = "<font style=""font-family: Calibri; font-size: 11pt;"">Hello,<p>Please find in attachment the Report.<p>We remain available should you have any questions."
End With
Set OutMail = Nothing
Set OutApp = Nothing
End Sub