• phpmailer教程


      使用phpmailer三步骤:
    1.环境开启socket;
    2.下载phpmailer;
    3.require('class.phpmailer.php')。

    代码:

    <?php
    require 'class.phpmailer.php';
    
    $mail = new PHPMailer;
    
    $mail->IsSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup server  这里可以直接使用网易的,如smtp.163.com
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'jswan';                            // SMTP username 这里一般写全比较好,就是带上@的
    $mail->Password = 'secret';                           // SMTP password
    $mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted 可以不要
    
    $mail->From = 'from@example.com';
    $mail->FromName = 'Mailer';
    $mail->AddAddress('josh@example.net', 'Josh Adams');  // Add a recipient  收件人地址和姓名,姓名可以省略
    $mail->AddAddress('ellen@example.com');               // Name is optional
    $mail->AddReplyTo('info@example.com', 'Information');
    $mail->AddCC('cc@example.com');
    $mail->AddBCC('bcc@example.com');
    
    $mail->WordWrap = 50;                                 // Set word wrap to 50 characters
    $mail->AddAttachment('/var/tmp/file.tar.gz');         // Add attachments
    $mail->AddAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name $mail->IsHTML(true); // Set email format to HTML $mail->Subject = 'Here is the subject'; $mail->Body = 'This is the HTML message body <b>in bold!</b>'; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; if(!$mail->Send()) { echo 'Message could not be sent.'; echo 'Mailer Error: ' . $mail->ErrorInfo; exit; } echo 'Message has been sent'; ?>
  • 相关阅读:
    SQLSERVER 的表分区(水平) 操作记录2
    GraphQl in ASP.NET Core
    初始认知学习 .net core 逐步加深
    C# 关于使用JavaScriptSerializer 序列化与返序列化的操作
    Nginx、IIS 相关命令
    SqlServer:查询指定表所有外键关联表信息
    centos 重启宝塔命令
    c# 根据日志中的方法信息,反射再次执行相关方法
    jackson 下载地址记录
    【设计模式】六大原则
  • 原文地址:https://www.cnblogs.com/thinksasa/p/3096392.html
Copyright © 2020-2023  润新知