Download the PHP package binarybuilds/nova-mail-manager without Composer
On this page you can find all versions of the php package binarybuilds/nova-mail-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download binarybuilds/nova-mail-manager
More information about binarybuilds/nova-mail-manager
Files in binarybuilds/nova-mail-manager
Package nova-mail-manager
Short Description A Laravel Nova tool to easily resend system generated mails without going through application flow.
License MIT
Informations about the package nova-mail-manager
Nova Mail Manager
A Laravel Nova tool to easily resend your system generated emails without going through entire application flow.
Internally this package uses Laravel Mail Manager to record and resend emails.
Installation
This package can be installed using composer.
Next you must register the package's service provider by adding the below line to providers
array inside
config/app.php
file.
Conflicts With Laravel Telescope
The dependent package(Laravel Mail Manager) currently conflicts with laravel telescope. If you are using laravel telescope in your application, Make sure you register the nova mail manager package's service provider after the telescope service provider is registered.
If you are registering telescope using config/app.php
file, Then add the service provider after the telescope service
provider as shown below.
If you are registering telescope manually using AppServiceProvider.php
file or any other service provider, Then register this package service
provider after the telescope service provider is registered as shown below.
Next, Publish the package configuration file by running
Run migrations to create the table required to store the emails.
This will create a table mail_manager_mails
. You can configure the table name using the published configuration file
located in config/mail_manager.php
Next, Inside your App/Providers/NovaServiceProvider.php
file, register the tool inside the tools
method as shown below.
Usage
After installation, You will see Mail Manager
in the nova navigation menu. Clicking on the link will take you to the
tool page where you can view and resend mails.
The dependent package(Laravel Mail Manager) has few commands which you can use to manage mails. Checkout the readme file of Laravel Mail Manager package for details.
Contributing
Thank you for considering contributing to Nova mail manager! Please create a pull request with your contributions with detailed explanation of the changes you are proposing.
License
This package is open-sourced software licensed under the MIT license.