Jump to content
  • 0

Форма обратной связи, проблема с обработчиком


woofs
 Share

Question

Подскажите почему, что не так,

мне место

слов

сообщение

Автор

адрес

Письмо

приходит чтото типо таких каракуль Автор

а то что прилетело из переменных формы нормально отображается

<?php

if (isset($_POST['name'])) {$name = $_POST['name'];}

if (isset($_POST['email'])) {$email = $_POST['email'];}

if (isset($_POST['message'])) {$message = $_POST['message'];}

$address = 'mail@mail.ru';

$sub = "Сообщение";

$mes = "Автор: $name \nАдресс: $email \nПисьмо: $message";

$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = windows-1251\r\nFrom:$email");

if ($verify == 'true')

{

echo "<p>Сообщение отправлено";

}

else

{

echo "<p>Сообщение не отправлено";

}

?>

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

попробуй так:

$address = 'mail@mail.ru';
$sub = "Сообщение с сайта:".$_SERVER['SERVER_NAME'];
$from="Администратор";
$mes = "Автор: $name \nАдресс: $email \nПисьмо: $message";
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=windows-1251 \r\n";
$headers.= "From: $from<name_mail@".$_SERVER['SERVER_NAME'].">\r\n";
$verify = mail ($address,$sub,$mes);

Edited by rus
Link to comment
Share on other sites

  • 0
потому что бред написали оба

<?php
if (isset($_POST['name'])) {$name = $_POST['name'];}
if (isset($_POST['email'])) {$email = $_POST['email'];}
if (isset($_POST['message'])) {$message = $_POST['message'];}

$address = 'mail@mail.ru';
$sub = "Сообщение";
$mes = "Автор: $name \nАдресс: $email \nПисьмо: $message";
$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = windows-1251\r\nFrom:$email");
if ($verify == 'true')
{
echo "<p>Сообщение отправлено";
}
else
{
echo "<p>Сообщение не отправлено";
}
?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy