/* получатели */ $to= "Mary " . ", " ; //обратите внимание на запятую $to .= "Kelly "; /* тема/subject */ $subject = "Birthday Reminders for August"; /* сообщение */ $message = ' Birthday Reminders for August

Here are the birthdays upcoming in August!

PersonDayMonthYear
Joe3rdAugust1970
Sally17thAugust1973
'; /* Для отправки HTML-почты вы можете установить шапку Content-type. */ $headers= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /* дополнительные шапки */ $headers .= "From: Birthday Reminder \r\n"; $headers .= "Cc: birthdayarchive@example.com\r\n"; $headers .= "Bcc: birthdaycheck@example.com\r\n"; /* и теперь отправим из */ mail($to, $subject, $message, $headers);