binarybuilds/nova-mail-manager
最新稳定版本:v1.0.1
Composer 安装命令:
composer require binarybuilds/nova-mail-manager
包简介
A Laravel Nova tool to easily resend system generated mails without going through application flow.
关键字:
README 文档
README
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.
composer require binarybuilds/nova-mail-manager
Next you must register the package's service provider by adding the below line to providers array inside
config/app.php file.
'providers' => [ // \BinaryBuilds\NovaMailManager\NovaMailManagerServiceProvider::class ]
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.
'providers' => [ // App\Providers\TelescopeServiceProvider::class, \BinaryBuilds\NovaMailManager\NovaMailManagerServiceProvider::class ]
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.
$this->app->register(TelescopeServiceProvider::class); $this->app->register(NovaMailManagerServiceProvider::class);
Next, Publish the package configuration file by running
php artisan vendor:publish --tag=laravel-mail-manager-config
Run migrations to create the table required to store the emails.
php artisan migrate
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.
public function tools() { return [ // new \BinaryBuilds\NovaMailManager\NovaMailManager() ]; }
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.
binarybuilds/nova-mail-manager 适用场景与选型建议
binarybuilds/nova-mail-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 24.69k 次下载、GitHub Stars 达 19, 最近一次更新时间为 2020 年 04 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mail」 「email」 「monitoring」 「nova」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 binarybuilds/nova-mail-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 binarybuilds/nova-mail-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 binarybuilds/nova-mail-manager 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Symfony bundle for chameleon-system/sanitycheck
SoftWax Health Check Bundle for Symfony framework
1Pilot client for Symfony
Statsd (Object Oriented) client library for PHP
Courier offers a convenient and painless solution for creating emails tailored for your Kirby website.
APM agent for laravel projects to monitor the application with elastic apm tools.
统计信息
- 总下载量: 24.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 19
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-06
