copromatic/mailgun-admin-bundle

A bundle that offers a set of tools to monitor emails sent via Mailgun

Installs: 9 476

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.2 2019-06-26 23:29 UTC

This package is auto-updated.

Last update: 2024-04-06 15:28:18 UTC


README

Requirements

This bundle is tested with Symfony 3 and PHP 7.1 with Swiftmailer and Mailgun Transport

Getting started

MailgunAdminBundle simply register ids of emails sent from Mailgun in DB and offers

Just pull the vendor:
composer require copromatic/mailgun-admin-bundle

(Optional) Set up a connection for the bundle, will use "default" if not specified

orm:
    default_entity_manager: default
    entity_managers:
        default:
            connection: default
            naming_strategy: doctrine.orm.naming_strategy.underscore
            auto_mapping: true
        mailgun_admin:
            connection: default
            naming_strategy: doctrine.orm.naming_strategy.underscore
            mappings:
                MailgunAdminBundle: ~

...

mailgun_admin:
    api_key: '%mailgun_api_key%'
    entity_manager: 'mailgun_admin'

Then update your database:
php [bin|app]/console doctrine:schema:update --force [--em=mailgun_admin]

Or

php [bin|app]/console doctrine:migration:diff and php [bin|app]/console doctrine:migration:migrate if you roll with migrations

A Swiftmailer listener waits for an email sent, it registers it to the DB if it bears a Message-Id (set up by Mailgun)

What's included

8 tables:
One for messages (mailgun can set their same id to multiples emails if they are sent at the same time)
7 for trackers: bounces, clicks, deliveries, failures, opens, spam reports

TODO

  • ! tests !
  • Implement unsubscribe tracking
  • Services to access content easily
  • Twig extensions to display data

Creators

68747470733a2f2f66696c65732e636f70726f6d617469632e636f6d2f6c6f676f2d636f70726f6d617469632d68642e6a7067

github.com/copromatic


Yannis Touili

Copyright and license

Code and documentation copyright 2012-2017. Code released under the MIT License.