alexeevdv / yii2-mailgun-mailer
Installs: 54
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
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: 2024-10-29 05:22:30 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', ], //... ], //...