Try this
http://msdn.microsoft.com/en-us/libr.../ff869553.aspx
Code:
Sub AddAttachment()
Dim myItem As Outlook.MailItem
Dim myAttachments As Outlook.Attachments
Set myItem = Application.CreateItem(olMailItem)
Set myAttachments = myItem.Attachments
myAttachments.Add "C:\Test.doc", olByValue, 1, "Test"
myItem.Display
End Sub
*******************
Consider rating the thread by going to the "Rate Thread" dropdown.