Hi, I have the below running, but for some reason it doesn't include the user's signature? Any ideas? Note, different users may be using this, so would like to include whatever their default outlook signature is:
Thanks!
VBA Code:
'Send Email
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
'On Error Resume Next
With OutMail
strbody = .htmlbody
.To = "test"""
.CC = "test@test.com"
.Subject = "Recap for " & Name
.htmlbody = RangetoHTML(rng)
'.htmlbody = getNewHTML(.htmlbody, strName, 2, "XXNameXX")
'.htmlbody = strBody & "<br>" & .htmlbody
.Display
End With
On Error GoTo 0
Set OutMail = Nothing
cleanup:
Set OutApp = Nothing
Application.DisplayAlerts = False
Application.DisplayAlerts = True
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Thanks!