You can include cc: and bcc:
//filename: html_mailer.php
class htmlMailer
{
function sendWelcomeHTMLMail($email, $age, $sex){
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: ".EMAIL_FROM_NAME." <".EMAIL_FROM_ADDR.">\r\n"; //define constants
$headers .= 'Bcc: [email]email1@msn.com[/email], [email]email2@yahoo.com[/email], [email]email3@aol.com[/email]' . "\r\n";
$subject = "Welcome!";
$message = <<<EOT
<html>
<head>
<title>TESTING!</title>
</head>
<body>
<p>Good Guys! in Afhganistan</p>
<table>
<tr>
<th>Name</th><th>Sex</th><th>Age</th><th>Vitamin</th>
</tr>
<tr>
<td>Kasmot</td><td>$sex</td><td>$age</td><td>Viagra</td>
</tr>
<tr>
<td>Apunjai</td><td>$sex</td><td>$age</td><td>Tongkat Ali</td>
</tr>
</table>
</body>
</html>
EOT;
return mail($email,$subject,$message,$headers);
}
function sendNewPass($user, $email, $pass){
$from = "From: ".EMAIL_FROM_NAME." <".EMAIL_FROM_ADDR.">"; //your constants name
$subject = "Your new password";
$body = $user.",\n\n"
."We've generated a new password for you at your "
."request, you can use this new password with your "
."username to log in our site.\n\n"
."Username: ".$user."\n"
."New Password: ".$pass."\n\n"
."- Your Site";
return mail($email,$subject,$body,$from);
}
/*you can add more function below.....
function sendmultiple(xxx,xxx,xxx){
[your code here]
}
function byGroup(xxx,xxx,xxx){
[your code here]
} */
}
HOW TO USE?
1. Create new file name "testmail.php"
<?php
include("html_mailer.php");
$obj = new html_mailer.php;
$email = "xxx";
$age = "72";
$sex = "Male";
$obj = sendWelcomeHTMLMail($email, $age, $sex);
?>