I'm using the code below to create an e-mail in Outlook from Access.
I want to insert a signature after the e-mail is created. I can do this in the e-mail window by choosing "Insert" and "Signature", but was wondering if it is possible to have the code do this automatically?
Thanks
AL
Code:
With ItmNewEmail
.To = Forms("frm recs tracked jobs").Controls("Dir name").Value
.CC = "Jim Smith;" & Forms("frm recs tracked jobs").Controls("empname").Value
.Subject = Forms("frm recs tracked jobs").Controls("job").Value & " IA Inspection - Executive Summary"
.Body = strBody
.BodyFormat = olFormatHTML
.Attachments.Add attnameDR
.ReadReceiptRequested = True
.Display
End With
I want to insert a signature after the e-mail is created. I can do this in the e-mail window by choosing "Insert" and "Signature", but was wondering if it is possible to have the code do this automatically?
Thanks
AL