We use a word macro to send an automatic email to an internal email group. Does anyone know how to have the signature block set up by the user included in the email created by the macro? Here is the code we're using to create the email:
Thanks!
Code:
Dim olapp As Outlook.Application
Dim nspNamespace As Outlook.NameSpace
Dim objNewMail As Outlook.MailItem
Set olapp = New Outlook.Application
Set nspNamespace = olapp.GetNamespace("Mapi")
Set objNewMail = olapp.CreateItem(olMailItem)
With objNewMail
.Recipients.Add ("email address")
.Subject = "email subject line"
.Body = "body text"
.Send
End With
Thanks!