purocean/yii2-sendcloud-mailer

A simple exclusive workflow lib

v0.0.2 2017-03-10 12:29 UTC

This package is not auto-updated.

Last update: 2024-11-09 21:17:10 UTC


README

A sendcloud email component for yii2

Usage

// append to yii application config file.
    'components' => [
        // ...
        'mailer' => [
            'class'            => 'SendcloudMailer\Mailer',
            'viewPath'         => '@app/mail',
            'useFileTransport' => false,

            // sendcloud params
            'apiUser'          => 'xxxxx',
            'apiKey'           => 'xxxxx',
            'from'             => 'xxxxx@gmail.com',
            'fromName'         => 'xxxxx',
        ],
        // ...
    ]

// some php file
Yii::$app
    ->mailer
    ->compose(
        ['html' => 'template_html'],
        ['var' => 'HELLOWORLD!']
    )
    ->setTo('xxxxx@gmail.com')
    ->setCc('xxxxx@qq.com')
    ->setSubject('subject')
    ->send();

Test

cd test
vim test.php # config params
php test.php