I am using this code to send emails but when the user send something in arabic I get unreadable message like this:
تجربة من Ø§Ù„ØµÙØ*Ø© العربية
here is my code.. please help..
<?php
$ToEmail = 'reception@rmc.bh';
$EmailSubject = 'Email from rmc.bh ';
$mailheader = "From: ".$_POST["email"]."\r\n";
$mailheader .= "Reply-To: ".$_POST["email"]."\r\n";
$mailheader .= 'Bcc: dhr@rmc.bh' . "\r\n";
$mailheader .= 'Bcc: jkh@rmc.bh' . "\r\n";
$mailheader .= "Content-type: text/html; charset=iso-8859-1\r\n";
$MESSAGE_BODY .= nl2br($_POST["message"])."<br><br><br><hr>";
$MESSAGE_BODY .= "IP Address: ".$_SERVER["REMOTE_ADDR"]."<br>";
mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die ("Failure");
header('Location: http://www.rmc.bh/thankyou.php');
?>