I want to send emails from Access with VBA. The emails should have the signature from the Outlook account.
If I transfer the body, then there is no signature.
If I don't specify a body, then the signature is in the email.
With objOutlookMsg
Set objOutlookRecip = .Recipients.Add("test@web.de")
objOutlookRecip.Type = olTo
.Subject = "Verwaltungsgebühr "
.Body = Anredeemail & vbCrLf & vbCrLf & "anbei erhalten Sie unsere Verwaltungskostenrechnung." & vbCrLf & vbCrLf & "Mit freundlichen Grüßen" & vbCrLf & vbCrLf & ""
.Importance = olImportanceNormal
.Attachments.Add strDatei
.Send
End With