PHP: <?php $to = "Mary <[email protected]>, " ; $to .= "Kelly <[email protected]>"; $subject = "Birthday Reminders for August"; $message = ' <html> <head> <title>Birthday Reminders for August</title> </head> <body> <p>Here are the birthdays upcoming in August!</p> </body> </html>'; $headers = "Content-type: text/html; charset=windows-1251 \r\n"; $headers .= "From: Birthday Reminder <[email protected]>\r\n"; $headers .= "Bcc: [email protected]\r\n"; mail($to, $subject, $message, $headers); ?> Отправка почты средствами PHP