이 글은 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+redis+mysq가 높은 동시성을 처리하는 방법(예제 코드)
php를 사용하여 방문자의 IP 주소를 얻는 방법(코드)
위 내용은 PHP에서 PHPMailer를 사용하여 이메일을 보내는 방법(코드 첨부)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!