Hi Guys,
So I have this pretty big program and I have a question about one part.
Basically for each case it is sending an email to multiple people.
My question is, when it goes to each case does this automatically know to do every email in the list. The reason I ask is because I noticed every once in a while it was sending to people not even in that particular case. Does it have something to do the the number I'm putting in the Variant part?
How do I make sure it sends to only people I specify in each case?
THANKS
Dim cust(25) As Variant
Case 4: strAccount = "0LC 915586"
cust(0) = "stephen.xxxx@xxx.com"
cust(1) = "robert.xxx@xxx.com"
cust(2) = "gicxxx@xxxx.net"
cust(3) = "fxxxx@xxx.com"
Case 5: strAccount = "0LC 915608"
cust(0) = "xxxx.xx@xxx.com"
cust(1) = "xx.xx@xxx.com"
cust(2) = "carlos.xxre@xxx.com"
Case 6: strAccount = "0LC 915560"
cust(0) = "jcauxxx@sxxxis.com"
cust(1) = "stexxxhen.foxxo@bxxxe.com"
cust(2) = ""
oDoc.sendto = cust
Bookmarks