Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Controlling reply address in outlook
Message
General information
Forum:
Microsoft Office
Category:
Outlook
Miscellaneous
Thread ID:
00365250
Message ID:
00365303
Views:
14
Use the ReplyRecipients Collection of the mail item object.

Here is a sample:
#Define olMailItem	0
oOutlook = createobject("outlook.application")
oNameSpace = oOutlook.GetNameSpace("MAPI")
oMailItem = oOutLook.CreateItem(olMailItem)
With oMailItem
   .Subject = "My Message"
   .To = "xyz@foo.com"
   .ReplyRecipients.add('foo@abc.com') && specify the reply address here
   .Send
EndWith
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform