yuchao 发表于 2018-2-11 12:00:49


            本文实例讲述了phpmailer绑定邮箱的实现方法。分享给大家供大家参考,具体如下:
效果如下:
http://files.jb51.net/file_images/article/201612/2016121115936409.png?201611112020
http://files.jb51.net/file_images/article/201612/2016121120024325.png?201611112049
1.配置
'smtp.aliyun.com',
'email_port' => '25',
'email_username' => 'diandodo@aliyun.com',
'email_password' => 'xxxxxx',
'email_from' => 'diandodo@aliyun.com',
'email_fromname' => '点多多',
'email_subject' => '助店宝商户激活邮箱',
'email_body' => "尊敬的用户{$username}您好:
    您的激活码为
{$code}
,请将激活码输入进行验证! 激活码有效期为6分钟^_^",
);
页: [1]
查看完整版本: phpmailer绑定邮箱的实现方法