I am using PHPMailer and trying to send email with the Arabic text, It's sending the Empty Subject , I can see in my Inbox "(no subject)"
I am using following :
HTML code
<form action="mail.php" method="post">
<input type="text" name="subject" />
<input type="submit" value="Send" />
</form>
PHP Code (mail.php)
$subject = $_POST["subject"];
$mailer = new PHPMailer();
$mailer->CharSet = 'UTF-8';
$mailer->IsSMTP();
$mailer->SMTPDebug = 1;
$mailer->SMTPAuth = true;
// Prepare Message
$mailer->Subject = ($subject);
$emails = 0;
Help will be appreciated :)