Disclaimer attachment

  • Thread starter Thread starter Kim
  • Start date Start date
K

Kim

I have created a .txt file to attach to an e-mail as the
disclaimer. How do I automatically set it up to attach to
an e-mail each time an e-mail is sent? I am using Outlook
2003.

Thank you!
 
I have created a .txt file to attach to an e-mail as the
disclaimer. How do I automatically set it up to attach to
an e-mail each time an e-mail is sent? I am using Outlook
2003.

Thank you!

Open the Visual Basic Editor and copy the following lines into the
fowlder ThisOutlookSession. Then this macro runs every time you send an
email. Put in the right path to your txt-file:

Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
If Item.Class = olMail Then
opMail.Attachments.Add "C:\temp\LegalDisclaimer.txt", 1
End If
End Sub


I am usind OL2002 - and it works pretty well.

J.
 
Back
Top