您好,登錄后才能下訂單哦!
這篇文章主要介紹“phpmailer用smtp發送郵件的過程”,在日常操作中,相信很多人在phpmailer用smtp發送郵件的過程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”phpmailer用smtp發送郵件的過程”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
<?php //error_reporting(E_ALL); error_reporting(E_STRICT); date_default_timezone_set('America/Toronto'); //date_default_timezone_set(date_default_timezone_get()); include_once('../class.phpmailer.php'); //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded $mail=new PHPMailer(); $body=$mail->getFile('contents.html'); $body=eregi_replace("[\]",'',$body); $mail->IsSMTP(); // telling the class to use SMTP $mail->Host = "smtp.126.com"; // SMTP server $mail->Port = 25; // set the SMTP port for the GMAIL server $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "username@126.com"; // SMTP username 注意:普通郵件認證不需要加 @域名 $mail->Password = "password"; // SMTP password $mail->From = "username@126.com"; $mail->FromName = "name"; $mail->CharSet = "GB2312"; // 這里指定字符集! $mail->Encoding = "base64"; $mail->AddAddress("username@126.com","name"); // 收件人郵箱和姓名 $mail->AddReplyTo("username@126.com","cgsir.com"); $mail->Subject = "PHPMailer Test Subject via smtp"; $mail->MsgHTML($body); $mail->AddAttachment("p_w_picpaths/phpmailer.gif"); // p_w_upload if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } ?>
到此,關于“phpmailer用smtp發送郵件的過程”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。