michaelgrimshaw/laravel-email-tracker

A package to track sent mail and listen to webhook events
1,844 9
Install
composer require michaelgrimshaw/laravel-email-tracker
Latest Version:1.0.5
PHP:~5.6|~7.0
License:MIT
Last Updated:Jul 15, 2021
Links: GitHub  ·  Packagist
Maintainer: michaelgrimshaw

Laravel Email Tracker

This package allows you to track sent mail and query sent mail statistics.

Once installed you can do stuff like this:

$user  = User::find(1);
$order = Order::find(1);
Mail::to($user)
    ->linkedTo($order)
    ->category('Order Verification')
    ->send(new testMail()));

By adding a trait you can access history sending history for a recipient or model.

// Get emails history sent to a user
$user->recipientHistory;
// Get emails history linked to a order
$order->mailableHistory;

Installation

Laravel

This package can be used in Laravel 5.5 or higher.

You can install the package via composer:

composer require michaelgrimshaw/laravel-email-tracker

In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

'providers' => [
    // ...
    MichaelGrimshaw\MailTracker\MailTrackerServiceProvider::class,
];
'aliases' => [
    // ...
    'Mail' => MichaelGrimshaw\MailTracker\Facades\Mail::class,
    'MailStats' => MichaelGrimshaw\MailTracker\Facades\MailStats::class,
];

You can create the mail history tables by running the migrations:

php artisan migrate

You can publish the config file with:

php artisan vendor:publish --provider="MichaelGrimshaw\MailTracker\MailTrackerServiceProvider" --tag="config"

Usage

First, add the MichaelGrimshaw\MailTracker\TrackableTrait trait to your User model(s) and link model(s):

use Illuminate\Foundation\Auth\User as Authenticatable;
use MichaelGrimshaw\MailTracker\TrackableTrait;

class User extends Authenticatable
{
    use TrackableTrait;

    // ...
}

Methods

This now gives you access to extra functions when sending which can be used to control the tracking.

linkedTo(object)

Pass in a model object to link the mail.

category(string)

Pass a string to add a category to the tracked mail.

tracked(bool)

As default, mail will always be tracked. You can use the tracked method to turn tracking on or off.

Tracking Events

The default webhook url is /api/email-tracker/event-hook. You can customise the route:

Route::post('custome-route', MailTrackerController::class . '@processEvent');

When the webhook is processed one of the following events are called:

// Events
'mail.event'
'mail.processed'
'mail.dropped'
'mail.delivered'
'mail.deferred'
'mail.bounce'
'mail.open'
'mail.click'
'mail.spamreport'
'mail.group_unsubscribe'
'mail.group_resubscribe'

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security-related issues, please email hello@michaelgrimshaw.co.uk instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.

Related Packages

stechstudio/laravel-postmaster

Verify, normalize, and track email delivery webhooks from SendGrid, Postmark, Ma...

4,646 5
r0bdiabl0/laravel-email-tracker

Multi-provider email tracking for Laravel - track opens, clicks, bounces, compla...

1,796 3
waynebrummer/mail-telemetry

Logs mail transactions and provides a report for email telemetry.

321 0
omnimail/omnimail

PHP Library to send email across all platforms using one interface.

36,611 331
jeffersongoncalves/laravel-mail

Complete email management for Laravel: logging, database templates with translat...

1,371 11