codecamp

基于PHPMailer的邮件发送

3.3.1 扩展类库:基于PHPMailer的邮件发送

此扩展可用于发送邮件。

3.3.2 安装和配置

 PhalApi-Library 扩展库中下载获取 PHPMailer 包,如使用:

git clone https://git.oschina.net/dogstar/PhalApi-Library.git

然后把 PHPMailer 目录复制到 ./PhalApi/Library/ 下,即:

cp ./PhalApi-Library/PHPMailer/ ./PhalApi/Library/ -R

到此安装完毕!接下是插件的配置。

(1)邮箱配置

需要在 ./Config/app.php 配置文件中追加以下配置:

  'PHPMailer' => array(
    'email' => array(
        'host' => 'smtp.gmail.com',
        'username' => 'XXX@gmail.com',
        'password' => '******',
        'from' => 'XXX@gmail.com',
        'fromName' => 'PhalApi团队',
        'sign' => '<br/><br/>请不要回复此邮件,谢谢!<br/><br/>-- PhalApi团队敬上 ',
    ),
  ),

3.3.3 使用

如下代码示例:

require_once './init.php';

DI()->loader->addDirs('Library');

$mailer = new PHPMailer_Lite(true);
$mailer->send('chanzonghuang@gmail.com', 'Test PHPMailer Lite', 'something here ...');

稍候将会收到:

123123


代理模式下phprpc协议的轻松支持
优酷开放平台接口调用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

八、视频教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }