fcosrno / sendgrid-report
PHP wrapper to view and manage SendGrid reports through the SendGrid Web API.
Requires
- php: >=5.3
- sendgrid/sendgrid: 2.*
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is not auto-updated.
Last update: 2024-11-19 08:46:16 UTC
README
PHP wrapper to view and manage SendGrid reports through the Web API.
This library extends the official sendgrid-php library. For consistency, it follows the same coding style, dependencies and conventions.
Quick usage
$sendgrid = new Fcosrno\SendGridReport\SendGrid('username', 'password'); $report = new Fcosrno\SendGridReport\Report(); $report->spamreports(); $result = $sendgrid->report($report);
Installation
Add SendGrid Report to your composer.json
file. If you are not using Composer, you should be. It's an excellent way to manage dependencies in your PHP application.
{ "require": { "fcosrno/sendgrid-report": "1.*" } }
Then at the top of your PHP script require the autoloader:
require 'vendor/autoload.php';
If you do not wish to use Composer, you can download the latest release. Then include the two library files in the src folder.
require_once('/path/to/SendGrid.php'); require_once('/path/to/Report.php');
Example App
There is an example in doc/example.php
to help jumpstart your development.
The example.php
file requires a example_params.json
file that contains your SendGrid credentials. The json file is in .gitignore
, so no worries about accidental commits there. For your convenience, an example of this json file is included in doc/example_params_placeholder.json
so that you can simply copy/paste that file and rename it to example_params.json
.
Usage
To begin using this library, initialize the SendGrid object with your SendGrid credentials.
$sendgrid = new Fcosrno\SendGridReport\SendGrid('your_sendgrid_username', 'your_sendgrid_password');
Create a new SendGrid Report object and add your method details.
$report = new Fcosrno\SendGridReport\Report(); $report->spamreports()->email('foo@bar.com'); $result = $sendgrid->report($report);
You can get Spam Reports, Blocks, Bounces, Invalid Emails, and Unsubscribes as defined in the SendGrid Web API. Actions and parameters are chainable to the method. The get
action is inferred by default.
For example, this GET request has a date parameter.
https://api.sendgrid.com/api/spamreports.get.json?api_user=your_sendgrid_username&api_key=your_sendgrid_password&date=1
The equivalent would look like this:
$sendgrid = new Fcosrno\SendGridReport\SendGrid('your_sendgrid_username', 'your_sendgrid_password'); $report = new Fcosrno\SendGridReport\Report(); $report->spamreports()->date(); $result = $sendgrid->report($report);
You can keep linking parameters:
$sendgrid = new Fcosrno\SendGridReport\SendGrid('your_sendgrid_username', 'your_sendgrid_password'); $report = new Fcosrno\SendGridReport\Report(); $report->spamreports()->date()->days(1)->startDate('2014-01-01')->email('foo@bar.com'); $result = $sendgrid->report($report);
If you want to use another action like delete
, add
or count
, just add it to the chain like this:
$sendgrid = new Fcosrno\SendGridReport\SendGrid('your_sendgrid_username', 'your_sendgrid_password'); $report = new Fcosrno\SendGridReport\Report(); $report->blocks()->delete()->email('foo@bar.com'); $result = $sendgrid->report($report);
Blocks
Returns list of blocks with the status, reason and email
$report = new Fcosrno\SendGridReport\Report(); $report->blocks(); $result = $sendgrid->report($report);
Bounces
Returns list of bounces with status, reason and email.
$report = new Fcosrno\SendGridReport\Report(); $report->bounces(); $result = $sendgrid->report($report);
With parameter, an optional email address to search for.
$report = new Fcosrno\SendGridReport\Report(); $report->bounces()->email('foo@bar.com'); $result = $sendgrid->report($report);
Invalid Emails
Returns list of invalid emails with the reason and email.
$report = new Fcosrno\SendGridReport\Report(); $report->invalidemails(); $result = $sendgrid->report($report);
Spam Reports
Returns list of spam reports with the ip and email.
$report = new Fcosrno\SendGridReport\Report(); $report->spamreports(); $result = $sendgrid->report($report);
Unsubscribes
Requires API access for unsubscribes.
$report = new Fcosrno\SendGridReport\Report(); $report->unsubscribes(); $result = $sendgrid->report($report);
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Testing
Tests are built with PHPUnit.
Make sure you install with dev requirements.
composer install
Go to the root of the project then run all tests by typing in the terminal:
phpunit