Page 1 of 1

multiple email

Posted: Tue Nov 30, 2004 12:13 pm
by kanchan
can anybody tell me, how to send ecards to multiple users.?


pls reply this. i m in need of this.......help me

Posted: Wed Dec 01, 2004 8:59 am
by qads
use a loop or use TO field and separated email address by commas.

Posted: Wed Dec 01, 2004 11:00 am
by kanchan
qads wrote:use a loop or use TO field and separated email address by commas.

please send me ur php codes...........

i need it........
plzzzzzzz

Posted: Wed Dec 01, 2004 12:54 pm
by John Cartwright
kanchan wrote:
qads wrote:use a loop or use TO field and separated email address by commas.

please send me ur php codes...........

i need it........
plzzzzzzz
if you want premade PHP code try checking out http://www.hotscripts.com

Posted: Fri Dec 03, 2004 4:56 pm
by evilmonkey
I'm just nice.

Code: Select all

//$emails is the index array containing your emails
for ($i=0; $i<=sizeof($emails); $i++){
mail($emails[$i], "this is the subject", "Hello friend, I am the body of the email.");
}
Of course it's rarely that simple, and you need your array with your data, but i should work. :)

Good luck!