ufaclub
Полезный
- Регистрация
- 1 Май 2007
- Сообщения
- 395
- Реакции
- 19
- Автор темы
- #1
скрипт выдерает из формы нтмл данные и отправляет на мыло..первый раз в нормальной еодировке а потом уже ироглифами где прописать мол чтоб скриптик отсылал в нужной кодировке(русскими чтоб буквами приходило)
<?
if(isset($_POST['fio']))
{
$to = "to@mail.ru";
$from = "from@mail.ru";
$subject = "Инфа";
$headers = "From: $from\r\n";
$headers .= "Content-type: text/html\r\n";
$message = "<html>
<body bgcolor='#DCEEFC'>
<center>
</center>
<font color='red'>ФИО:".$_POST['fio']."</font><br>
<font color='blue'>E-mail:".$_POST['email']."</font><br>
<font color='green'>Phone:".$_POST['phone']."</font><br>
<font color='red'>Text:".$_POST['mess']."</font><br>
</body>
</html>";
mail($to, $subject, $message, $headers);
header("Location: legal.html");
}
?>
<?
if(isset($_POST['fio']))
{
$to = "to@mail.ru";
$from = "from@mail.ru";
$subject = "Инфа";
$headers = "From: $from\r\n";
$headers .= "Content-type: text/html\r\n";
$message = "<html>
<body bgcolor='#DCEEFC'>
<center>
</center>
<font color='red'>ФИО:".$_POST['fio']."</font><br>
<font color='blue'>E-mail:".$_POST['email']."</font><br>
<font color='green'>Phone:".$_POST['phone']."</font><br>
<font color='red'>Text:".$_POST['mess']."</font><br>
</body>
</html>";
mail($to, $subject, $message, $headers);
header("Location: legal.html");
}
?>