itbeauftragter/yii2-nsl-mailgun
Composer 安装命令:
composer require itbeauftragter/yii2-nsl-mailgun
包简介
NSL Mailgun Extension for Yii2
README 文档
README
NSL Mailgun Extension for Yii2
Version
Aktuelle Version: 1.0.5
Installation
php composer.phar require --prefer-dist itbeauftragter/yii2-nsl-mailgun "*"
Usage
Configure it in the application configuration:
'components' => [ ... 'mailer' => [ 'class' => 'itbeauftragter\mailgun\Mailer', 'key' => 'key-example', 'domain' => 'mg.example.com', 'endpoint' => 'api.eu.mailgun.net' ], ... ],
To send an email, you may use the following code:
Yii::$app->mailer->compose('contact/html', ['contactForm' => $form]) ->setFrom('from@domain.com') ->setTo($form->email) ->addTags(['Tag1', 'Tag2']) ->setSubject($form->subject) ->send();
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2019-02-08