Home >Backend Development >PHP Tutorial >Questions about sending emails with PHP

Questions about sending emails with PHP

WBOY
WBOYOriginal
2016-07-06 13:53:10906browse

<code>$mail = new PHPMailer; 
$mail->isSMTP();        
$mail->Host = 'smtp.163.com';   
$mail->SMTPAuth = true;
$mail->CharSet='UTF-8';     
$mail->Username = 'XXXX@163.com';  
$mail->Password = 'XXX';   
$mail->Port = 25;   
$mail->From = 'XXXX@163.com';            
$mail->FromName = 'XXXX';     
$mail->addAddress('XXX@qq.com');      
$mail->WordWrap = 50;                              
$mail->isHTML(true);                     
$mail->Subject = '发送邮件测试';
$mail->Body    = 'XXXX';
if(!$mail->send()) {
    echo '邮件发送失败.';
    echo '错误信息: ' . $mail->ErrorInfo;
} else {
    echo '邮件发送成功';
}
</code>

Questions about sending emails with PHP

Reply content:

<code>$mail = new PHPMailer; 
$mail->isSMTP();        
$mail->Host = 'smtp.163.com';   
$mail->SMTPAuth = true;
$mail->CharSet='UTF-8';     
$mail->Username = 'XXXX@163.com';  
$mail->Password = 'XXX';   
$mail->Port = 25;   
$mail->From = 'XXXX@163.com';            
$mail->FromName = 'XXXX';     
$mail->addAddress('XXX@qq.com');      
$mail->WordWrap = 50;                              
$mail->isHTML(true);                     
$mail->Subject = '发送邮件测试';
$mail->Body    = 'XXXX';
if(!$mail->send()) {
    echo '邮件发送失败.';
    echo '错误信息: ' . $mail->ErrorInfo;
} else {
    echo '邮件发送成功';
}
</code>

Questions about sending emails with PHP

https://github.com/kokororin/posutoba/tree/master/src/System/Library/Vendor/PHPMailer

<code>Vendor('PHPMailer.PHPMailerAutoload');
$mail = new \PHPMailer();</code>

Use the thinkphp framework. Just change the namespace of the SMTP class file to the same namespace as your phpmailer class. I just configured it a few days ago

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