alexeevdv / yii2-mailgun-mailer
Package info
github.com/alexeevdv/yii2-mailgun-mailer
Type:yii2-extension
pkg:composer/alexeevdv/yii2-mailgun-mailer
1.0.2
2018-02-25 09:43 UTC
Requires
- mailgun/mailgun-php: ^2.4
- php-http/guzzle6-adapter: ^1.1
- yiisoft/yii2: ^2.0
Requires (Dev)
This package is auto-updated.
Last update: 2026-03-01 00:11:47 UTC
README
Yii2 mailer implementation that send mails via mailgun.com
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require alexeevdv/yii2-mailgun-mailer "~1.0"
or add
"alexeevdv/yii2-mailgun-mailer": "~1.0"
to the require section of your composer.json file.
Configuration
Through application component
use alexeevdv\mailer\MailgunMailer; //... 'components' => [ //... 'mailer' => [ 'class' => MailgunMailer::class, 'apiKey' => 'YOUR_API_KEY', 'domain' => 'your-domain.tld', ], //... ], //...