Разделы
Теги | RSS © 2008 – 2022
Контакты
email:
skype:
» » mail

Отправка письма в UTF-8


function mail_utf8($to, $from, $subject, $message)
{
$subject = '=?UTF-8?B?' . base64_encode($subject) . '?=';

$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain; charset=utf-8\r\n";
$headers .= "From: $from\r\n";

return mail($to, $subject, $message, $headers);
}

// пример использования
mail_utf8('[email protected]', '[email protected]', 'Заголовок сообщения', 'Текст сообщения');

Rainloop - Simple, modern & fast web-based email client


Rainloop - Simple, modern & fast web-based email client

Php клиент почты (бесплатный) не требующий базы данных.
http://rainloop.net/
Вверх