PHP code example of tyrellsys / cakephp3-aws-ses-transport

1. Go to this page and download the library: Download tyrellsys/cakephp3-aws-ses-transport library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tyrellsys / cakephp3-aws-ses-transport example snippets


    'EmailTransport' => [
        'default' => [
            'className' => 'CakePHP3AwsSesTransport\Mailer\Transport\AwsSesTransport',
            'region' => 'us-east-1', // optional
            'version' => 'latest', // optional
            'aws_access_key_id' => 'xxxx', // optional if EC2InstanceRole
            'aws_access_secret_key' => 'xxxx', // optional if EC2InstanceRole
        ],
        :
        :