黑马程序员技术交流社区

标题: 【上海校区】Yii使用PHPMailer发送邮件 [打印本页]

作者: 梦缠绕的时候    时间: 2019-1-14 09:44
标题: 【上海校区】Yii使用PHPMailer发送邮件
使用方法
作为普通component:
利用这个例子,使用SMTP作为发送的方法,在控制器创建一个component:
1
2
3
4
5
6
7
8
9
10
11
12
13
$message='Hello World!';
$mailer= Yii::createComponent('application.extensions.mailer.EMailer');
$mailer->Host = ;
$mailer->IsSMTP();
$mailer->From ='wei@example.com';
$mailer->AddReplyTo('wei@example.com');
$mailer->AddAddress('qiang@example.com');
$mailer->FromName ='Wei Yard';
$mailer->CharSet ='UTF-8';
$mailer->Subject = Yii::t('demo','Yii rulez!');
$mailer->Body =$message;
$mailer->Send();

作为application component:配置文件代码(注意pathViews和pathLayouts参数):
1
2
3
4
5
6
7
8
9
'components'=>array(
   'mailer'=>array(
      'class'=>'application.extensions.mailer.EMailer',
      'pathViews'=>'application.views.email',
      'pathLayouts'=>'application.views.email.layouts'
   ),
   // ...
}

控制器代码:
1
2
3
4
5
6
7
8
9
10
11
$message='Hello World!';
Yii::app()->mailer->Host ='smtp.yiiframework.com';
Yii::app()->mailer->IsSMTP();
Yii::app()->mailer->From ='wei@pradosoft.com';
Yii::app()->mailer->FromName ='Wei';
Yii::app()->mailer->AddReplyTo('wei@pradosoft.com');
Yii::app()->mailer->AddAddress('qian@yiiframework.com');
Yii::app()->mailer->Subject ='Yii rulez!';
Yii::app()->mailer->Body =$message;
Yii::app()->mailer->Send();



作者: 不二晨    时间: 2019-1-16 09:09
奈斯




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2