Hi,
I been creating and sending emails from a ling time by the coding form given below,
$to = $user_email;
// subject
$subject = 'helo';
// message
$message = "
<html>
<head>
<title> Account Activation Link</title>
</head>
<body>
<table width='759'>
<tr>
<td>message here</td>
</tr>
</table>
</body>
</html>
";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
..................................
..................................
The above method is fine for sending emails in html and in english.
But if i use same code to generate arabic word it give some charcters like this,
"
ان كانت Ø§Ù„ÙØªØ§Ø© التي معك اختك او زوجتك او اØ*د من اقاربك Ùلا تÙكر مرة اخرى ان تأتي بها الى هذا المكان ولا ÙÙŠ المطاعم الاخرى المنتشرة ÙÙŠ المنطقة الخضراء وما شاهدته هنا لا يساوÙ
"
I have changed charset many time to arabic but could not reslove the issue and still get the same result.
Note: I first do query some result from database, get the result and then send it using the above email forms. thanks
any advice will be great.