Jump to content
  • 0

как кодировку "сделать" в почтовой программе ?


Sword
 Share

Question

Как кодировку "сделать" в почтовой программе?

сейчас сообщения в таком виде приходят:

Имя пославшего:апр::::::::::Электронный адрес:апр:::::::::: ( ,а я нормально хочу чтоб было - по русски .

Спс

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

<?php
// multiple recipients
$to = 'wez@example.com';

// subject
$subject = 'А здесь надо указать тему письма';

// message
$message = 'Любое сообщение можно отправить';

// указываем кодировку
$headers = 'MIME-Version: 1.0' . "rn";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "rn";

// дополнительная инфо
$headers .= 'To: Mary <mary@example.com>' . "rn";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "rn";

// и отсылаем
mail($to, $subject, $message, $headers);
?>

Вот это есть в официальной докуметации.

А так я отсылаю почту.

mail("shkoda@wl.com.ua",			//TO
"ReportForm", //Subject
$SessionOrder['ReportForm'], //Text of letter
"From: questionary_from_web@{$_SERVER['SERVER_NAME']}rn" . //Headers
"Reply-To: questionary_from_web@{$_SERVER['SERVER_NAME']}rn".
"X-Mailer: PHP/" . phpversion()." Content-type:text/plain; charset=win-1251nn");

Можно так попробовать

Link to comment
Share on other sites

  • 0
Вот это есть в официальной докуметации.

также нюанс - "rn" не всегда работает (в смысле не у всех хостеров), если какие-то проблемы имеет смысл пробовать просто "n"

а собственно по сабжу - используй функцию convert_cyr_string

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