Download the PHP package skitlabs/laravel-mailgun-multiple-domains without Composer

On this page you can find all versions of the php package skitlabs/laravel-mailgun-multiple-domains. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-mailgun-multiple-domains

Multiple Mailgun Domains in one Laravel app

Sending email through Mailgun is a breeze, when sending from one domain only.
For any additional domains, the calling code needs to determine which mailer transport to use.
This can be especially annoying when the mailer to use depends on the sender, which is often set inside the mailable.

Using this package, the calling code is no longer concerned with the configured mailers.

Installation

You can install the package via composer:

How it works

This package contains a listener that hooks into the Illuminate\Mail\Events\MessageSending event, which is dispatched just before sending the e-mail.
It then reconfigures the current Transport, based on the from domain in the message. This works for direct and queued messages alike, with no extra configuration!

Thanks to Laravel's auto-discovery (❤), no assembly required!

Requirements

There are a few requirements for this to work;

Older versions

Not using laravel 9 (yet)? Version 2 of this package supports laravel 7 and 8.

Usage

If you've configured mailgun under mg.{domain.tld}, and your secret works for all domains you are sending from; you're ready to start sending e-mail! 👍

Let's say you're sending a message as [email protected]. Just before sending the message, this package will set the mailgun domain to: mg.acme.app.

What if I need to customize my settings, per domain?

Add the sending domains to your mailgun configuration in the key domains.

If a domain is not specified, it defaults to mg.{domain.tld}.
If the secret or endpoint are not configured, these fallback to your configured global defaults.

What if I need to customize how these settings are determined?

If the standard way of resolving sender properties is not suitable for your use-case, create a custom resolver that implements MailGunSenderPropertiesResolver. See the default implementation for inspiration.

Once you have your own concrete implementation, overwrite the default bind in any of your service providers;

What if my mailer has a different name?

Specify the name of your mailer, as the second argument, when instantiating ReconfigureMailGunOnMessageSending.

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

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


All versions of laravel-mailgun-multiple-domains with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0|^8.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package skitlabs/laravel-mailgun-multiple-domains contains the following files

Loading the files please wait ....