T Terence Lowe Aug 12, 2004 #1 What MSWORD object and (property or method) manipulates the Send to Recipients and associated Outlook fields in MSWORD.
What MSWORD object and (property or method) manipulates the Send to Recipients and associated Outlook fields in MSWORD.
J John Nurick Aug 12, 2004 #2 Hi Terence, The usual way to discover this sort of thing is to record a macro while you perform the action manually. This shows that File|Send To|Mail Recipient invokes ActiveDocument.SendMail, which takes no arguments. You can get further by using Document.RoutingSlip; after that you have to write to the MAPI library or automate Outlook. See http://word.mvps.org/faqs/interdev/SendMail.htm and http://www.granite.ab.ca/access/email.htm for more.
Hi Terence, The usual way to discover this sort of thing is to record a macro while you perform the action manually. This shows that File|Send To|Mail Recipient invokes ActiveDocument.SendMail, which takes no arguments. You can get further by using Document.RoutingSlip; after that you have to write to the MAPI library or automate Outlook. See http://word.mvps.org/faqs/interdev/SendMail.htm and http://www.granite.ab.ca/access/email.htm for more.