L
Lesley Regan
This excellent link to http://word.mvps.org/FAQs/InterDev/SendMail.ht
assumes it's the active document I want to send
What if I want to define a path to a closed document and send that one as an attachment instead
I have a routine that always saves to a specific document name in My Documents. I want to open up a new email message and send that specific document
I tried customizing Help text from VBA Help in Outlook, but nothing seemingly happened
Set myOlApp = CreateObject("Outlook.Application"
Set myItem = myOlApp.CreateItem(olMailItem
Set myAttachments = myItem.Attachment
myAttachments.Add "C:\My Documents\Q496.xls",
olByValue, 1, "4th Quarter 1996 Results Chart
Any insights? I'd appreciate some direction
Regards
Lesle
assumes it's the active document I want to send
What if I want to define a path to a closed document and send that one as an attachment instead
I have a routine that always saves to a specific document name in My Documents. I want to open up a new email message and send that specific document
I tried customizing Help text from VBA Help in Outlook, but nothing seemingly happened
Set myOlApp = CreateObject("Outlook.Application"
Set myItem = myOlApp.CreateItem(olMailItem
Set myAttachments = myItem.Attachment
myAttachments.Add "C:\My Documents\Q496.xls",
olByValue, 1, "4th Quarter 1996 Results Chart
Any insights? I'd appreciate some direction
Regards
Lesle