When in doubt, check the object browser: Press ALt+F11 to open the VBA environment in Outlook, then press F2. Switch from All Libraries to Outlook to browse all Outlook objects and their properties, methods, and events. Select any object or member, then press F1 to see its Help topic.
If you did that, you'd learn that ReplyRecipients is a Recipients collection in which you create new items by using the Add method:
Item.ReplyRecipients.Add "mydistributionlist"
In that application, "mydistributionlist" must be an Exchange distribution list with its own distinct email address.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
"bbnimda" wrote in message ...
Tks a lot sue your answer are very usefull to me
Tryed tu use this but i doesn't work , Sorry i'm new in Vbscript and
VBA
Item.ReplyRecipients = "mydistributionlist"
can your where am I wrong...
tks
"Sue Mosher [MVP-Outlook]" a écrit dans le message
de news: ...
You can use the Item.ReplyRecipients collection to control the reply-to
address.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
"bbnimda" wrote in message
...
Hi,
I made my own form, and it generate a formated mail Receipient / CC
/subject / retails etc....
but a wan't to change the sender of the mail , by a ditributioin list in
this case no matter who send the mail, if the recipient answer the mail it
will be sent to all member of th distribution list
Thank's