Here are the birthdays upcoming in August!
Person | Day | Month | Year |
Johny | 10th | August | 1970 |
Sally | 17th | August | 1973 |
';
// To send HTML mail, the Content-type header must be set
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=iso-8859-1';
// Additional headers
$headers[] = 'To: Mary , Kelly ';
$headers[] = 'From: Birthday Reminder ';
$headers[] = 'Cc: birthdayarchive@example.com';
$headers[] = 'Bcc: birthdaycheck@example.com';
// Mail it
mail($to, $subject, $message, implode("\r\n", $headers));
?>