jplarar / ses-bundle
A simple Symfony2 bundle for the API for AWS SES.
Installs: 998
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3
- aws/aws-sdk-php: ^3.0
- sensio/framework-extra-bundle: >=2.1
- symfony/config: >=2.1
- symfony/dependency-injection: >=2.1
- symfony/filesystem: >=2.1
- symfony/framework-bundle: >=2.1
- symfony/http-foundation: >=2.1
- symfony/http-kernel: >=2.1
- symfony/options-resolver: >=2.1
- symfony/security: >=2.1
- symfony/validator: >=2.1
This package is auto-updated.
Last update: 2025-03-12 10:35:00 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"); ?>