Please I am looking for (refer to a friend script or to buy the code) taking upto 5 email addresses on the website and sending the emails to all 5.
i was looking on net but i could'nt able to find.
Please help.
Thank you very much for the info.
Check out PHPMailer . It handles SMTP and is really simple to use
require_once "phpmailer/class.phpmailer.php"; $mail = new phpmailer(); $mail->From = "my@email.com"; $mail->FromName = "My Name"; $mail->Host = "my.mail.server"; $mail->IsSMTP(); $mail->Subject = "My Mail Title"; $mail->Body = "This is the body of my email"; $mail->AddAddress("friend1@email.com"); $mail->AddAddress("friend2@email.com");