完整代码。
<?php /** * mail函数发送邮件 乱码问题 * 整理 by http://www.jb200.com */ $to = 'sales@zui88.com'; $subject = "=?UTF-8?B?".base64_encode('脚本学堂,欢迎大家的光临。')."?="; $message = " 用户姓名:{$_POST['name']}n 用户邮箱:{$_POST['email']}n 用户电话:{$_POST['contact']}n 留言内容:{$_POST['content']} "; $headers = 'From: test@jb200.com' . "rn" . 'Reply-To: admin@jb200.com' . "rn" . 'X-Mailer: PHP/' . phpversion(); $headers .= 'Content-type: text/html; charset=utf-8' . "rn"; mail($to, $subject, $message, $headers); ?>