Yii2使用swiftmailer发送邮件的方法
程序员文章站
2024-04-03 18:35:28
本文实例讲述了yii2使用swiftmailer发送邮件的方法。分享给大家供大家参考,具体如下:
'mail' => [
'class' =>...
本文实例讲述了yii2使用swiftmailer发送邮件的方法。分享给大家供大家参考,具体如下:
'mail' => [ 'class' => 'yii\swiftmailer\mailer', 'viewpath' => '@backend/mail', 'usefiletransport' => false,//set this property to false to send mails to real email addresses //comment the following array to send mail using php's mail function 'transport' => [ 'class' => 'swift_smtptransport', 'host' => 'smtp.gmail.com', 'username' => 'username@gmail.com', 'password' => 'password', 'port' => '587', 'encryption' => 'tls', ], ], ],
控制器:
yii::$app->mail->compose('your_view', ['params' => $params]) ->setfrom([\yii::$app->params['supportemail'] => 'test mail']) ->setto('to_email@xx.com') ->setsubject('this is a test mail ' ) ->send();
更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于yii框架的php程序设计有所帮助。
上一篇: java对象类型转换和多态性(实例讲解)
下一篇: php 生成签名及验证签名详解
推荐阅读
-
Yii2使用swiftmailer发送邮件的方法
-
Zend Framework框架之Zend_Mail实现发送Email邮件验证功能及解决标题乱码的方法
-
yii2中使用Active Record模式的方法,yii2record
-
yii2 RBAC使用DbManager实现后台权限判断的方法
-
Yii2使用dropdownlist实现地区三级联动功能的方法
-
phpmailer简单发送邮件的方法(附phpmailer源码下载)
-
Yii2框架使用计划任务的方法
-
yii2高级应用之自定义组件实现全局使用图片上传功能的方法
-
php使用SAE原生Mail类实现各种类型邮件发送的方法
-
使用spring框架中的组件发送邮件功能说明