Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Controlling reply address in outlook
Message
Information générale
Forum:
Microsoft Office
Catégorie:
Outlook
Divers
Thread ID:
00365250
Message ID:
00365303
Vues:
15
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform