All I am using this code:
But when I run it it looks like this.... All,Attached is the monthly.......... I need a space after the "All,"
Any help would be appreciated. thank you
VBA Code:
Sub SendEmail()
Dim appOutlook As Outlook.Application
Dim mEmail As Outlook.MailItem
Set appOutlook = New Outlook.Application
Set mEmail = appOutlook.CreateItem(olMailItem)
With mEmail
.To = "testmymail@outlook.com"
.CC = ""
.BCC = ""
.Subject = "MHT Equipment Maintenance Audit"
.HTMLBody = "All," & vbNewLine & _
"Attached is the Monthly MHT Level II Preventative Maintenance Audit spreadsheet."
.Display
End With
Set mEmail = Nothing
Set appOutlook = Nothing
End Sub
But when I run it it looks like this.... All,Attached is the monthly.......... I need a space after the "All,"
Any help would be appreciated. thank you