How to send an email in utf8
i want to send message of this email in utf8 coding .. what can i do for this include 'functions.php'; $name = stripslashes($_POST['name']); $email = trim($_POST['email']); $subject = stripslashes($_POST['subject']); $message = stripslashes($_POST['message']); $cap=strtoupper($_POST['cap']); $error = ''; $mail = mail(WEBMASTER_EMAIL,$subject,$message, "From: ".$name." <".$email.">\r\n" ."Reply-To: ".$email."\r\n" ."X-Mailer: PHP/" . phpversion()); what can i send this in utf8 ? You can specify the encoding in the email headers, like so: $mail = mail(WEBMASTER_EMAIL,$subject,$message, "From: ".