Hi Guy's
How do i add an attach file to this piece of code.

How do i add an attach file to this piece of code.


Dim myOlApp As Outlook.Application
Dim MyItem As Outlook.MailItem
Set myOlApp = CreateObject("Outlook.Application")
Set MyItem = myOlApp.CreateItemFromTemplate("C:\Users\User\documents\Template.msg")
MyItem.Subject = Nz(Me.txtCustomerEmailAddress1)
MyItem.To = Nz(Me.TxtContactName)
MyItem.Display
End With