這篇文章要跟大家介紹的內容是關於php使用PHPMailer如何寄送郵件(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
本篇記錄的是我的發郵件的程式碼整理。用PHPMailer實作發送郵件功能
下載phpmailer位址 https://github.com/PHPMailer/PHPMailer
<?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require './PHPMailer/src/Exception.php'; require './PHPMailer/src/PHPMailer.php'; require './PHPMailer/src/SMTP.php'; $mail = new PHPMailer(true); // Passing `true` enables exceptions try { //Server settings $mail->SMTPDebug = 2; // Enable verbose debug output $mail->isSMTP(); // Set mailer to use SMTP $mail->Host = 'smtp.qq.com'; // Specify main and backup SMTP servers $mail->SMTPAuth = true; // Enable SMTP authentication $mail->Username = 'xxx@qq.com'; // SMTP username $mail->Password = 'xxxx'; // SMTP password QQ邮箱授权码 $mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted $mail->Port = 587; // TCP port to connect to //Recipients $mail->setFrom('xxx@qq.com', 'Mailer'); $mail->addAddress('xxx@qq.com', 'Joe User'); // Add a recipient $mail->addAddress('xxx@qq.com'); // Name is optional $mail->addReplyTo('xxx@qq.com', 'Information'); $mail->addCC('xxx@qq.com'); $mail->addBCC('xxx@qq.com'); //Attachments //$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments //$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name //Content $mail->isHTML(true); // Set email format to HTML $mail->Subject = 'Email title'; $mail->Body = 'Email body'; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; $mail->send(); echo 'Message has been sent'; } catch (Exception $e) { echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo; }
QQ信箱授權碼取得方式如下圖:
相關文章推薦:
######如何使用php取得來訪者的ip位址(程式碼)#######以上是php使用PHPMailer如何傳送郵件(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!