Jump to content
  • 0

Функция mail()


banyman
 Share

Question

Подскажите, пожалуйста!

Проблема в том, что письмо приходит пустым (без текста и реквизитов)

Проверил все переменные - данные доходят до функции mail(), но почему не отправляются - не пойму

$subject1 = "**Test - info**";
$encoding = "From: ".$email." \n";
$encoding .="X-Mailer: PHP/" . phpversion();
$encoding .=" MIME-Version: 1.0\n";
$encoding .="Content-Type: text/plain; charset=UTF-8\n";
$encoding .="Content-Transfer-Encoding: 8bit";
$body1 = "<font face=\"arial\" size=\"2\">".$namecust.": <br><br>";
$body1 .= $text;
$body1 .= "</font>";
$body1 .='--'."\n";

$emails = $adminmail1[0];
//echo $body1; echo $emails;
//echo $emails. $subject1. $body1. $encoding;

mail($emails,$subject1,$body1,$encoding);

Может ошибка где-то...

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Подскажите, пожалуйста!

Проблема в том, что письмо приходит пустым (без текста и реквизитов)

Проверил все переменные - данные доходят до функции mail(), но почему не отправляются - не пойму

$subject1 = "**Test - info**";
$encoding = "From: ".$email." \n";
$encoding .="X-Mailer: PHP/" . phpversion();
$encoding .=" MIME-Version: 1.0\n";
$encoding .="Content-Type: text/plain; charset=UTF-8\n";
$encoding .="Content-Transfer-Encoding: 8bit";
$body1 = "<font face=\"arial\" size=\"2\">".$namecust.": <br><br>";
$body1 .= $text;
$body1 .= "</font>";
$body1 .='--'."\n";

$emails = $adminmail1[0];
//echo $body1; echo $emails;
//echo $emails. $subject1. $body1. $encoding;

mail($emails,$subject1,$body1,$encoding);

Может ошибка где-то...

4 строка: пробел лишний

3 строка: перевода строки нет

Content-Type: text/plain: Content-Type: text/html

Переводы строки:

This is typically used to add extra headers (From, Cc, and Bcc). Multiple extra headers should be separated with a CRLF (\r\n).

Последняя строка без перевода строки.

А так, нет, без ошибок совсем.

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