nswdpc / silverstripe-mailgun-sync
Send messages via Mailgun and synchronise with Mailgun Events API.
Installs: 5 516
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 3
Open Issues: 1
Type:silverstripe-vendormodule
Requires
Requires (Dev)
- cambis/silverstan: ^1
- cambis/silverstripe-rector: ^1
- nswdpc/ci-files: dev-v-3
- phpunit/phpunit: ^9.5
- dev-master
- v2.0.1
- v2.0.0
- v1.1.0-rc1
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0
- v0.3.1
- v0.3
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2
- v0.1
- dev-update-mailgun-sdk-4
- dev-update-ci-files
- dev-ss5
- dev-auto-updates
- dev-v1-1-0
- dev-feat-taggable-merge
- dev-feat-taggable-merge-auto-update
- dev-feat-taggable
- dev-ss3
This package is auto-updated.
Last update: 2025-04-04 04:59:38 UTC
README
This module provides functionality to send emails via the Mailgun API and store events related to messages using Mailgun's webhooks feature
Requirements
See composer.json
- silverstripe/framework ^5
- Symbiote's Queued Jobs module
- Mailgun PHP SDK ^3, kriswallsmith/buzz, nyholm/psr7
Installing
composer require nswdpc/silverstripe-mailgun-sync
Mailgun configuration
You need:
- A Mailgun account
- At least one non-sandbox Mailgun mailing domain (verified is best) in your choice of region
- A Mailgun API key or a Mailgun Domain Sending Key for the relevant mailing domain (the latter is recommended)
- The correct configuration in your project (see below)
Configuration
See Getting Started
Error handling
Email send errors will throw an exception, catch these exceptions to handle transport errors.
Breaking changes
2.0+ release
This version refactored the module to support the silverstripe/framework
change to using symfony/mailer
and is not backwards compatible with previous versions. When updating your project, be aware of the following changes:
- Configuration is done via a symfony mailer DSN, either in project yml or environment variable
- MailgunMailer was removed, almost all functionality was moved to the
MailgunSyncApiTransport
- Namespace updates to reflect psr-4
- The
api_domain
,api_key
andapi_endpoint_region
configuration values were removed (see DSN) - Default recipient handling was removed
- 'Always from' handling was removed, Email.send_all_emails_from is now the only way to do this
- All client connectors that extend
Base
must now provide aDsn
or a string that aDsn
can be created from:
1.0 release
Version 1 removed unused features to reduce the complexity of this module.
The core functionality is now:
- Send messages via the standard Email process in Silverstripe, with added Mailgun options
- Send messages directly via the API
- Handle webhook requests from Mailgun via a dedicated controller
Synchronisation of events is now handled by the webhooks controller
LICENSE
BSD-3-Clause
See LICENSE
Maintainers
- PD Web Team
Bugtracker
We welcome bug reports, pull requests and feature requests on the Github Issue tracker for this project.
Please review the code of conduct prior to opening a new issue.
Security
If you have found a security issue with this module, please email digital[@]dpc.nsw.gov.au in the first instance, detailing your findings.
Development and contribution
If you would like to make contributions to the module please ensure you raise a pull request and discuss with the module maintainers.
Please review the code of conduct prior to completing a pull request.