Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert signature in e-mail created by Access

Status
Not open for further replies.

PortyAL

Technical User
May 13, 2005
126
GB
I'm using the code below to create an e-mail in Outlook from Access.

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top