connectionsbv/yii2-smtp2go

A library provides Yii2 integration with SMTP2GO mail service

0.0.5 2025-01-10 15:34 UTC

This package is auto-updated.

Last update: 2025-05-10 16:24:51 UTC


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();