发送邮件服务——SMTP邮件发送服务

PHPMailer支持多种邮件发送方式,这里我们使用SMTP

注意:测试邮件发送,可能会屏蔽掉,进入垃圾箱。

lib中phpmailer中包含3个文件,分别是:Phpmailer.php Stmp.php Email.php

Phpmailer.php Stmp.php 官方提供,只需要改写为TP5的类就行。

这里只写出Email.php代码, 部分参数在配置文件中

<?php
namespace phpmailer;
/**
 * 发送邮件类库
 */
class Email{
    /**
     * @param $to
     * @param $title
     * @param $content
     * @return bool
     */
    public static function send($to,$title,$content){
        date_default_timezone_set('PRC');//set time
        if(empty($to)){
            return false;
        }

            //Create a new PHPMailer instance
            $mail = new Phpmailer;
            //Tell PHPMailer to use SMTP
            $mail->isSMTP();
            //Enable SMTP debugging
            // 0 = off (for production use)
            // 1 = client messages
            // 2 = client and server messages
            //$mail->SMTPDebug = 2;
            //Ask for HTML-friendly debug output
            $mail->Debugoutput = 'html';
            //Set the hostname of the mail server
            $mail->Host = config('email.host');
            //Set the SMTP port number - likely to be 25, 465 or 587
            $mail->Port = config('email.port');
            //Whether to use SMTP authentication
            $mail->SMTPAuth = true;
            //Username to use for SMTP authentication
            $mail->Username = config('email.username');
            //Password to use for SMTP authentication
            $mail->Password = config('email.password');
            //Set who the message is to be sent from
            $mail->setFrom('maikeshushu520@163.com', '商城');
            //Set an alternative reply-to address
            //$mail->addReplyTo('replyto@example.com', 'First Last');
            //Set who the message is to be sent to
            $mail->addAddress($to);
            //Set the subject line
            $mail->Subject = $title;
            //Read an HTML message body from an external file, convert referenced images to embedded,
            //convert HTML into a basic plain-text alternative body
            $mail->msgHTML($content);
            //Replace the plain text body with one created manually
            //$mail->AltBody = 'This is a plain-text message body';
            //Attach an image file
            //$mail->addAttachment('images/phpmailer_mini.png');

            //send the message, check for errors
            if (!$mail->send()) {
                return false;
                // echo "Mailer Error: " . $mail->ErrorInfo;
            } else {
                return true;
            }
    }
}

基于TP5的控制器

/**
     * 测试发送邮件服务
     */
    public function aqie(){
        \phpmailer\Email::send('maikeshushu520@163.com','啊切你好','222');
        return '发送邮件成功';
        return $this->fetch();
    }

转载于:https://my.oschina.net/u/3530967/blog/1545730

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值