Skip to content

waytonoway/mailer-ses-v4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Amazon ses extension for Yii2

Extension for sending emails via amazon ses v4. (based on daniel-zahariev/php-aws-ses)

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist waytonoway/mailer-ses-v4

or add

"waytonoway/mailer-ses-v4": "1.0.0"

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' => 'waytonoway\ses\Mailer',
        'access_key' => 'Your access key',
        'secret_key' => 'Your secret key',
        'host' => 'email.us-east-1.amazonaws.com' // not required
    ],
    ...
],

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

To send an email with headers, you may use the following code:

Yii::$app->mail->compose('contact/html', ['contactForm' => $form])
    ->setFrom('from@domain.com')
    ->setTo($form->email)
    ->setSubject($form->subject)
    ->setHeader('Precedence', 'bulk')
    ->setHeader('List-id', '<1>')
    ->setHeader('List-Unsubscribe', Url::to(['user/unsubscribe'], true))
    ->send();

About

Amazon Simple Email Service for Yii2

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%