Jump to content
  • 0

Кодировка при отправки почты


bgraf
 Share

Question

Кодировка моей страницы

Добрый день всем

вот кодировка моей страницы

<META http-equiv=Content-Type content="text/html; charset=utf-8">

<META http-equiv=Content-Language content=he>

а вот кусок кода для отправки почты

<?php

if(isset($_POST['submit']))

{

$mail_to = "amnon@m5team.com";

$thm = "From site MATTY contact us";

$msg = "From : ".$_POST['l_name']."\n";

$msg .= "Position: ".$_POST['position']."\n";

$msg .= "E-mail adress: ".$_POST['email']."\n";

$msg .= "Phone: ".$_POST['t_number']."\n";

$msg .= "Selular: ".$_POST['s_number']."\n";

$msg .= "How do you know about us: ".$_POST['from_where']."\n\n\n";

$msg .=$_POST['m_message'];

$headers = "From: ".$_POST['l_name']." "."<".$_POST['email'].">"."\n";

if(mail($mail_to, $thm, $msg ,$headers))

{

$message_ok = "Your mail has been successfully sent";

}

}

?>

помогите что мне надо дописать или изменить в коде чтобы вместо иврита не выскакивали разные знаки

спасибо большое . да очень важно чтобы все было в utf8

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
надо пере конвертировать переменные в cp-1251, iconv("utf-8","windows-1251",переменная);

спасибо я это уже читал вот только не разобрался где и как это все писать и мне на самом деле надо не русский а иврит windows-1255

Link to comment
Share on other sites

  • 0

все разобрался спасибо огромное

<?php

if(isset($_POST['submit']))

{

$mail_to = "mdddrav@m5team.com";

$thm = "From site MATTY contact us";

$msg = "From : ".$_POST['l_name']."\n";

$msg .= "Position: ".$_POST['position']."\n";

$msg .= "E-mail adress: ".$_POST['email']."\n";

$msg .= "Phone: ".$_POST['t_number']."\n";

$msg .= "Selular: ".$_POST['s_number']."\n";

$msg .= "How do you know about us: ".$_POST['from_where']."\n\n\n";

$msg .=$_POST['m_message'];

$headers = "From: ".$_POST['l_name']." "."<".$_POST['email'].">"."\n";

$mail_to = iconv("utf-8","windows-1255",$mail_to);

$thm = iconv("utf-8","windows-1255",$thm);

$msg = iconv("utf-8","windows-1255",$msg);

$headers = iconv("utf-8","windows-1255",$headers);

if(mail($mail_to, $thm, $msg ,$headers));

{

$message_ok = "Your mail has been successfully sent";

}

}

?>

да нет приходит уже проверил

Link to comment
Share on other sites

  • 0

ок сейчас переделаю респект

сори а вот еще такой вопрос в эту тему , а как можно сделать что то универсальное ну для разных языков , не проверяя код введенных букв , ведь по сути дела utf8 это универсальная кодировка

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