jplarar/ses-bundle

A simple Symfony2 bundle for the API for AWS SES.

Installs: 983

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.2.0 2019-06-11 20:37 UTC

This package is auto-updated.

Last update: 2024-04-12 08:30:11 UTC


README

A simple Symfony2 bundle for the API for AWS SES.

Setup

Step 1: Download JplararSESBundle using composer

Add SES Bundle in your composer.json:

{
    "require": {
        "jplarar/ses-bundle": "^1.0.0"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update "jplarar/ses-bundle"

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Jplarar\SESBundle\JplararSESBundle()
    );
}

Step 3: Add configuration

# app/config/config.yml
jplarar_ses:
        amazon_ses:
            amazon_ses_key:    %amazon_ses_key%
            amazon_ses_secret: %amazon_ses_secret%
            amazon_ses_region: %amazon_ses_region%

Usage

Using service

<?php
        $sesClient = $this->get('amazon_ses_client');
?>

##Example

###Send new email to SES

<?php 
    $result = $sesClient->sendEmail(
                'recipient@example.com', 
                'subject', 
                'sender@example.com', 
                '<h1>AWS Amazon Simple Email Service Test Email</h1>',
                'This email was send with Amazon SES using the AWS SDK for Symfony.'
            );
            
            $messageId = $result->get('MessageId');
            echo("Email sent! Message ID: $messageId"."\n");
?>