connectionsbv / yii2-smtp2go
A library provides Yii2 integration with SMTP2GO mail service
0.0.5
2025-01-10 15:34 UTC
Requires
- php: >=8.0
- smtp2go-oss/smtp2go-php: *
- yiisoft/yii2: ~2.0.14
README
Installation
composer require connectionsbv/yii2-smtp2go
Usage
Add the following code in your application configuration:
return [ //.... 'components' => [ 'mailer' => [ 'class' => 'connectionsbv\smtp2go\Mailer', 'token' => 'YOUR_TOKEN', ], ], ];
Send an email
You can then send an email as follows:
Yii::$app->mailer->compose() ->setFrom('from@domain.com') ->setTo($to) ->setSubject($from) ->send();