這期內(nèi)容當中小編將會給大家?guī)碛嘘Pthinkphp中怎么利用nettemail發(fā)送郵件,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)公司是專業(yè)的衛(wèi)輝網(wǎng)站建設公司,衛(wèi)輝接單;提供成都網(wǎng)站制作、成都網(wǎng)站建設,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行衛(wèi)輝網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
服務器 private $server="smtp.163.com"; // SMTP服務器的用戶郵箱 private $email=""; //SMTP服務器的用戶帳號 private $username=""; //SMTP服務器的授權碼 private $password=""; // 發(fā)件人姓名 private $name = ''; public function __construct() { } /** * send: 發(fā)送郵件 * @param string $accept 接收人 * @param string $title 郵件標題 * @param string $content 郵件內(nèi)容 * @return bool 發(fā)送成功返回true */ public function send($accept, $title, $content,$file) { $mail = new Message(); try { $mail->setFrom($this->name . ' <' . $this->email . '>') ->addTo($accept) ->setSubject($title) ->setBody($content) ->AddAttachment($file,'資料'); $mailer = new SmtpMailer([ 'host' => $this->server, 'username' => $this->username, 'password' => $this->password, 'secure'=>'ssl', 'port'=>465 ]); $res= $mailer->send($mail); return true; } catch (AssertionException $e) { return false; } } }
上述就是小編為大家分享的thinkphp中怎么利用nettemail發(fā)送郵件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。