can anybody tell me, how to send ecards to multiple users.?
pls reply this. i m in need of this.......help me
multiple email
Moderator: General Moderators
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
if you want premade PHP code try checking out http://www.hotscripts.comkanchan 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
- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada
I'm just nice.
Of course it's rarely that simple, and you need your array with your data, but i should work. 
Good luck!
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.");
}Good luck!