Download the PHP package ruelrule05/laravel-ses without Composer
On this page you can find all versions of the php package ruelrule05/laravel-ses. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ruelrule05/laravel-ses
More information about ruelrule05/laravel-ses
Files in ruelrule05/laravel-ses
Package laravel-ses
Short Description Allows you to track opens, deliveries, bounces, complaints and clicked links when sending emails through Laravel and Amazon SES
License MIT
Informations about the package laravel-ses
laravel-ses
A Laravel 5.5+ Package that allows you to get simple sending statistics for emails you send through SES, including deliveries, opens, bounces, complaints and link tracking.
Install via composer
Add to composer.json
Make sure your app/config/services.php has SES values set
Important to note that if you're using an IAM, it needs access to SNS (for deliveries, bounces and complaints) as well as SES
Make sure your mail driver located in app/config/mail.php is set to 'ses'
Publish public assets
Migrate the package's database tables
Optionally you can publish the package's config (laravelses.php)
Config Options
- aws_sns_validator - whether the package uses AWS's SNS validator for inbound SNS requests. Default = false
Run command in production to setup Amazon email notifications to track bounces, complaints and deliveries. Make sure in your configuration your app URL is set correctly.
If your application uses the http protocol instead of https add the --http flag to this command
Usage
To send an email with all tracking enabled
All tracking allows you to track opens, bounces, deliveries, complaints and links
You can, of course, disable and enable all the tracking options
The batching option gives you the chance to group emails, so you can get the results for a specific group
You can manipulate the results manually by querying the database. Or you can use functions that come with the package.
Send count = number of emails that were attempted
Deliveries = number of emails that were delivered
Opens = number of emails that were opened
Complaints = number of people that put email into spam
Click throughs = number of people that clicked at least one link in your email
Link Popularity = number of unique clicks on each link in the email, ordered by the most clicked.
API INFO
Data always has the 'success' key indicating whether the request was successful or not
400 bad request = validation for the endpoint failed
404 = something in your query was not found
422 = any other error that might have occurred
Parameters - none
Response
Parameters - none
Response
Parameters - none
Response
Parameters - none
Response
All versions of laravel-ses with dependencies
illuminate/console Version ~5.5
illuminate/mail Version ~5.5
illuminate/database Version ~5.5
illuminate/container Version ~5.5
illuminate/routing Version ~5.5
aws/aws-sdk-php Version ^3.28
ramsey/uuid Version ^3.7
nesbot/carbon Version ^1.22
guzzlehttp/guzzle Version ~6.0
paquettg/php-html-parser Version ^1.7
aws/aws-php-sns-message-validator Version ^1.4
symfony/psr-http-message-bridge Version ^1.0
zendframework/zend-diactoros Version ^1.7