DFdou's Blog Life is short,Be yourself.

7kankan11bookekzw免费小说网要看书网 官路风流 酒神 uawx书都阅读网 冒牌大英雄 斗罗大陆
2911/081

Phpmailer鐨勭敤娉

鍏充簬phpmailer鐨勪笅杞借鍘http://phpmailer.codeworxtech.com/
鏈绠鍗曠殑璇达紝phpmailer灏辨槸鐢ㄦ潵鍙戦侀偖浠剁殑涓涓猵hp绫汇
璋冪敤鐨勮瘽鍏跺疄涓嬭浇鐨勫寘閲屾湁example鏂囦欢鍖咃紝閲岃竟鏄畬鏁寸殑渚嬪瓙銆
鎭╋紝涓嬭竟鏄竴涓猻mtp锛

< ?php
require("class.phpmailer.php");
//鍐欎釜鑷畾涔夊嚱鏁
function smtp_mail ( $sendto_email, $subject, $body, $extra_hdrs, $user_name) {
 $mail = new PHPMailer();
 $mail->IsSMTP();                // send via SMTP
 $mail->Host = "smtp.163.com"; // SMTP servers 浠163閭涓轰緥
 $mail->SMTPAuth = true;         // turn on SMTP authentication
 $mail->Username = "163鐨勯偖绠辩敤鎴峰悕";   // SMTP username  娉ㄦ剰锛氭櫘閫氶偖浠惰璇佷笉闇瑕佸姞 @鍩熷悕
 $mail->Password = "163閭瀵嗙爜";        // SMTP password
 $mail->From = "youremail";      // 鍙戜欢浜洪偖绠
 $mail->FromName =  "Street13绠$悊鍛";  // 鍙戜欢浜
 $mail->CharSet = "utf8";            // 杩欓噷鎸囧畾瀛楃闆嗭紒鎸囧畾涓篏B2312浼氫贡鐮侊紒
 $mail->Encoding = "base64";
 $mail->AddAddress($sendto_email,"username");  // 鏀朵欢浜洪偖绠卞拰濮撳悕
 $mail->AddReplyTo("youremail","youremail");
 $mail->IsHTML(true);  // send as HTML
 // 閭欢涓婚
 $mail->Subject = $subject;
 // 閭欢鍐呭
 $mail->Body = '
 <html><head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta></head>
 <body>
        娆㈣繋鏉ュ埌yourdomain
 </body>
 </html>
 ';
 $mail->AltBody ="text/html";
 if(!$mail->Send())
 {
  echo "閭欢鍙戦佹湁璇
";
  echo "閭欢閿欒淇℃伅: " . $mail->ErrorInfo;
  exit;
 }
 else {
  echo "$user_name 閭欢鍙戦佹垚鍔!";
 }
}
// 鍙傛暟璇存槑(鍙戦佸埌, 閭欢涓婚, 閭欢鍐呭, 闄勫姞淇℃伅, 鐢ㄦ埛鍚)
smtp_mail('youremail', '娆㈣繋鏉ュ埌yourdomain锛', 'NULL', 'yourdomain', 'username');
?>

gmail璺焢op3鐨勭敤娉曞熀鏈浉鍚岋紝瀵圭収鐫鏀瑰氨鍙互浜嗐

Tagged as: , , 1 Comment