softbread/yii2-sendcloud
Composer 安装命令:
composer require softbread/yii2-sendcloud
包简介
Provides Yii2 component for SendCloud email service
README 文档
README
This extension allows developpers to use SendCloud as an email transport. Also, you may use this extension to send SMS messages to Chinese cell phones via SendCloud. This work is inspired by yii2-sendgrid.
Installation
If you use Composer, you can update your composer.json like this :
{
"require": {
"softbread/yii2-sendcloud": "@dev"
}
}
How to use it
Add extension to your configuration
return [ //.... 'components' => [ 'mailer' => [ 'class' => 'SendCloud\Mail\Mailer', 'api_user' => '<your sendcloud api-user>', 'api_key' => '<your sendcloud api-key>' ], 'sendSms' => [ 'class' => 'SendCloud\Sms\SendSms', 'apiUser => '<your SMS api-user>', 'apiKey => '<your SMS api-key>' ], ], ];
You can send email via SendCloud as mailer component
Yii::$app->mailer->compose('contact/html') ->setFrom('from@domain.com') ->setTo($form->email) ->setSubject($form->subject) ->send();
For further instructions refer to the related section in the Yii Definitive Guide
Also you can use SendCloud template Emails
Yii::$app->mailer->compose('contact/html') ->setFrom('from@domain.com') ->setTo([email1, email2]) ->setSubject($form->subject) ->setTemplateName('revoke-name') ->setTemplateVars([ '%name%' => ['X1', 'X2'], '%money%'=> [12.5, 1.9] ]) ->send();
To send SMS message:
Yii::$app->sendSms->setTo(['13700000000', '13011111111']) ->setTemplate('1001') ->setVars(['code' => '000111']) ->send();
For further instruction refer to the SendCloud SMS API doc
softbread/yii2-sendcloud 适用场景与选型建议
softbread/yii2-sendcloud 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 01 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 softbread/yii2-sendcloud 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 softbread/yii2-sendcloud 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 30
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2018-01-12