How to seperate addressess in the replytoall field

How we can place more than one name in the replytoall field .Can you please provide me some sample code.

My code is like this but it throwing error.

maildoc. Replytoall= “Satyaveni81 @yahoo.com”, “satyaveni.81@gmail.com

Subject: Basically you are asking something quite simple

how do I create an multivalue item on a NotesDocument?

and the answer is assign an array to it !

which in turn leads to the question how can I create an array?

which has two answers:

explicitly using something like this


Dim ar(1 to 2) as string ’ Note the 1 to 2 making these the indexes. Often indexed from 0

ar(1) = “xxxxx”

ar(2) = “yyyy”


or implicitly using a function that will create the array for you


dim ar as variant

ar = Split( “xxxx,yyyy” , “,” )

_________________-

Obviously there are lots more ways to get your array

but once you have it just assign it


doc.Itemname = ar


Aside : From your original post you wish to create a “ReplyToAll” item.

What do you want this item to do for you?

Subject: RE: Basically you are asking something quite fundament

hisathya

do onething

you take all users names in to one hidden field

then take count of that field then take onr for loop

ex: for i=0 to to count of that field

take each name from that field with some seperator using split method then send

hope it will work fine…

num:9731055656