BCC mailing problem

hi all

i have a small problem in sending bcc mails

problem is

i have totally 6 memebrs to send bcc mails

i have taken those 6 people in an arrary

in first condition i want to send bcc to first two people

in second rem two people

third for rem two pwople

i using condition lik

1 condition is

Maildoc.BlindCopyto=keys(1 to 2)–here i m geetting peoblem how to over come this…

Subject: BCC mailing problem…

Taking a guess here… is the e-mail for person 3 and 4, and then 5 and 6 different?

I’m just curious because if you BCC people when the e-mail arrives none of the people in the BCC list know/see about any of the other people. So it seems odd to me to send out 3 emails of 2 people in each if the e-mail is the same in each case.

If you need to do it, a simple solution would be (assuming keys holds you list of 6 names)

Dim x as Integer

Dim TwoPeople(2) as String

For x=0 to 6 Step 2

TwoPeople(0) = keys(x)

TwoPeople(1) = keys(x+1)

...

Maildoc.BlindCopyto=TwoPeople

...

Next