この記事では、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 メールの取得方法認可コードは以下のとおりです。 :
# おすすめ関連記事: #thinkPHP フレームワークのビューの解説(コード付き)php redis mysq 高い同時実行性を処理する方法 (コード例) php を使用して訪問者の IP アドレスを取得する方法 (コード)以上がPHPでPHPMailerを使用してメールを送信する方法(コードが添付されています)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。