Extension for sending emails via amazon ses. Part of YaShop
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.
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('[email protected]')
->setTo($form->email)
->setSubject($form->subject)
->send();