unknowww » 2009.03.16 20:24

как послать сразу 5 емаила... В одном письме, чтоб другому пришло 5 раза???

datua » 2009.03.16 21:47

eto budet SPAM.

unknowww » 2009.03.16 21:51

mne nado shtob po 5 raz otprovlal)))

Gemorroj » 2009.03.16 22:03

нет. на самом деле просто пиши емылы через запятую.

Код:

1
span style="color: #0000BB"><?php// кому отправляем$to = 'Mary <mary@example.com>, Kelly <kelly@example.com>';// тема$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=utf-8 \r\n";$headers .= "From: Birthday Reminder <mail@example.com>\r\n";$headers .= "Bcc: mail-archive@example.com\r\n";// сама отправкаmail($to, '=?utf-8?B?' . base64_encode($subject) . '?=', $message, $headers);?>