blaksnm
Well-known Member
- Joined
- Dec 15, 2009
- Messages
- 554
- Office Version
- 365
- Platform
- Windows
Hi guys
I have a macro-routine that generates a mail, and use default signature all right.
However I want my macro to use another signature - called "Example" in stead of my default MS Oulook signature
Could this be done - I think it has do with "HTMLBody or something, but don't know how to solve this problem?
Relevant exstract of my macro:
With OutMail
.Display
.To = Range("Mail1").Value
.CC = Range("MailCopy").Value
.BCC = ""
.Subject = Range("Subject1").Value
.HTMLBody = strbody & "<H4><br>" & .HTMLBody
.Attachments.Add (Range("FakturaNr").Value)
'.Send (I don't want to send he mail automticly in this case)
I have a macro-routine that generates a mail, and use default signature all right.
However I want my macro to use another signature - called "Example" in stead of my default MS Oulook signature
Could this be done - I think it has do with "HTMLBody or something, but don't know how to solve this problem?
Relevant exstract of my macro:
With OutMail
.Display
.To = Range("Mail1").Value
.CC = Range("MailCopy").Value
.BCC = ""
.Subject = Range("Subject1").Value
.HTMLBody = strbody & "<H4><br>" & .HTMLBody
.Attachments.Add (Range("FakturaNr").Value)
'.Send (I don't want to send he mail automticly in this case)