Home>Article>Backend Development> How to send emails using PHPMailer in php (code attached)

How to send emails using PHPMailer in php (code attached)

不言
不言 Original
2018-08-06 16:00:36 2647browse

This article introduces to you how to send emails using PHPMailer in PHP (with code attached). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

This article records my code arrangement for sending emails. Use PHPMailer to implement email sending function

Download the phpmailer addresshttps://github.com/PHPMailer/PHPMailer

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; }

How to obtain the QQ email authorization code is as shown below :

Recommended related articles:

Explanation of views in thinkPHP framework (with code)

php redis mysq How to handle high concurrency (example code)

How to use php to obtain the visitor's IP address (code)

The above is the detailed content of How to send emails using PHPMailer in php (code attached). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn