Добавление комментариев отключено
Подскажите как сделать так чтоб письмо у меня приходило в нужной кодировке
а то сколько не борюсь только в Кирилице(KOI8-R)
ниже приведена формула подскажите куда чего вставить или на как сослаться с этой
формулы на подготовленную форму , спасибо!
<?
/*Script developed by Nadine Gaine.
You can freely use, modify and distribute for NON-COMMERCIAL purposes only
If you decide to use it, giving me the credit would be appreciated.*/
$MailTo = "info@eurosnab.ru"; //recipient of the form results
$MailSubject = "Письмо из сайта Eurosnab.Ru"; //text in the Subject field of the mail
$MailHeader = "From: robot@eurosnab.ru"; //text in the From field of the mail
/* Following routines put values entered in the form fields into variables and then put the results in the global variable MailBody which will be the Body part of the message */
$Envoi = 1; //give value 1 to the variable $Envoi
if ($champ1 == ""){ //name of field 1
echo("<font face=verdana size=2>Вы не представились!</font><br>"); //message to be displayed if the field is left empty
$Envoi = 0; //if field 1 is empty, variable $Envoi takes value 0
}
else {
$MailBody = "ФИО : $champ1\n"; //if field 1 has been completed, value is inserted in variable MailBody
}
if ($champ2 == ""){
echo("<font face=verdana size=2>Вы не оставили контактную информацию!</font><br>");
$Envoi = 0;
}
else {
$MailBody .= "Контакты : $champ2\n";
}
if ($champ6 == ""){
echo("<font face=verdana size=2>Вы не написали текст письма!</font><br>");
$Envoi = 0;
}
else {
$MailBody .= "Рекомендация: $champ6\n";
}
if ($Envoi == 1) { //Check that variable $Envoi has value 1
mail($MailTo, $MailSubject, $MailBody, $MailHeader); //message send
echo("<p><font face=verdana size=2>Ваше сообщение отправлено. Спасибо!</font>"); //Confirmation message.
}
?>
$MailHeader = "From: robot@eurosnab.ru"; //text in the From field of the mail
меняем на:
$MailHeader = "From: robot@eurosnab.ru" . "\r\n" . 'Content-type: text/plain; charset="windows-1251"' . "\r\n"; //text in the From field of the mail
Вопрос был задан на этой странице. Но если Вам это не интересно, могу предложить Вам почитать про платный хостинг.