jplarar/ses-bundle
Composer 安装命令:
composer require jplarar/ses-bundle
包简介
A simple Symfony2 bundle for the API for AWS SES.
README 文档
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"); ?>
统计信息
- 总下载量: 1.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-20