久艹网,亚洲一日韩欧美中文字幕2019,国产欧美日韩精品专区黑人,一区二区三区久久99

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

Posts Tagged With: mail

php使用mail函數(shù)發(fā)送郵件,解決亂碼問題

2012/06/01 at 11:03 » Comments (24)

$to = 'sales@zui88.com'; $subject = "=?UTF-8?B?".base64_encode('網(wǎng)站收到一個新信息')."?="; $message = " 用戶姓名:{$_POST['name']}\n 用戶郵箱:{$_POST['email']}\n 用戶電話:{$_POST['contact']}\n 留言內(nèi)容:{$_POST['content']} "; $headers = 'From: webmaster@zui88.com' . "\r\n" . 'Reply-To: webmaster@zui88.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; mail($to, $subject, $message, $headers); more »