Amazon ses extension for Yii2 ¶
Extension for sending emails via amazon ses. Part of YaShop.
Sources on github - https://github.com/ofat/yashop-ses
Installation ¶
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist ofat/yii2-yashop-ses "*"
or add
"ofat/yii2-yashop-ses": "*"
to the require section of your composer.json file.
Usage ¶
To use this extension, you should configure it in the application configuration like the following:
'components' => [
    ...
    'mail' => [
        'class' => 'yashop\ses\Mailer',
        'access_key' => 'Your access key',
        'secret_key' => 'Your secret key'
    ],
    ...
],
To send an email, you may use the following code:
Yii::$app->mail->compose('contact/html', ['contactForm' => $form])
    ->setFrom('from@domain.com')
    ->setTo($form->email)
    ->setSubject($form->subject)
    ->send();
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.