当前位置:Gxlcms > PHP教程 > thinkphp邮件发送_PHP教程

thinkphp邮件发送_PHP教程

时间:2021-07-01 10:21:17 帮助过:3人阅读

1.下载PHPMailer类包

下载地址

https://code.google.com/a/apache-extras.org/p/phpmailer

注意把文件放在: ThinkPHP/Extend/Vendor/PHPMailer/class.phpmailer.php

2.

 SendMail(,,'PHPMailer.class#PHPMailer'=
    ->
    ->CharSet='UTF-8'
    ->AddAddress(
    ->Body=
    ->From=C('MAIL_ADDRESS'
    ->FromName='LilyRecruit'
    ->Subject=
    ->Host=C('MAIL_SMTP'
    ->SMTPAuth=
    ->Username=C('MAIL_LOGINNAME'->Password=C('MAIL_PASSWORD'
    (->

3. 发送 $this->SendMail("zg@126.cn","title","bodyinfo ");

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/747272.htmlTechArticle1.下载PHPMailer类包 下载地址 https://code.google.com/a/apache-extras.org/p/phpmailer 注意把文件放在: ThinkPHP/Extend/Vendor/PHPMailer/class.phpmailer.php 2. SendMa...

人气教程排行