multiple email
Posted: Tue Nov 30, 2004 12:13 pm
can anybody tell me, how to send ecards to multiple users.?
pls reply this. i m in need of this.......help me
pls reply this. i m in need of this.......help me
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
qads wrote:use a loop or use TO field and separated email address by commas.
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
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.");
}