yii2-mailgun-mailer
, (*1)
Yii2 mailer implementation that send mails via mailgun.com, (*2)
Installation
The preferred way to install this extension is through composer., (*3)
Either run, (*4)
$ php composer.phar require alexeevdv/yii2-mailgun-mailer "~1.0"
or add, (*5)
"alexeevdv/yii2-mailgun-mailer": "~1.0"
to the require
section of your composer.json
file., (*6)
Configuration
Through application component
use alexeevdv\mailer\MailgunMailer;
//...
'components' => [
//...
'mailer' => [
'class' => MailgunMailer::class,
'apiKey' => 'YOUR_API_KEY',
'domain' => 'your-domain.tld',
],
//...
],
//...