metarush/email-fallback
Composer 安装命令:
composer require metarush/email-fallback
包简介
Send email via SMTP host, if it fails, fallback/failover to another SMTP host. Round-robin mode also available to distribute the load to all SMTP hosts.
README 文档
README
Send email via SMTP host, if it fails, fallback/failover to another SMTP host. Round-robin mode also available to distribute the load to all SMTP hosts.
Note: This library uses PHPMailer.
Install
Install via composer as metarush/email-fallback
Usage
Define your SMTP servers. You can add as many as you want.
<?php use MetaRush\EmailFallback; $servers = [ 0 => (new EmailFallback\Server) ->setHost('host1') ->setUser('user1') ->setPass('pass2') ->setPort(25) ->setEncr('TLS'), 1 => (new EmailFallback\Server) ->setHost('host2') ->setUser('user2') ->setPass('pass2') ->setPort(25) ->setEncr('TLS') ];
The fallback servers will be used in the order they are defined.
You must start the array key with 0 then increment by 1.
Initialize library:
$mailer = (new EmailFallback\Builder) ->setServers($servers) // array of Server objects ->setFromEmail(string) // "From" email ->setTos(array) // array of "To" email ->setSubject(string) // email subject ->setBody(string) // email body ->setFromName(string) // optional: "From Name" ->setCcs(array) // optional: array of "CC" emails ->setBccs(array) // optional: array of "BCC" emails ->setReplyTos(array) // optional: array of "Reply to" emails ->setAttachments(array) // optional: array of files already on the server ->setDebugLevel(int) // optional: PHPMailer debug level from 0 - 4. Default: 0 ->setAdminEmails(array) // optional: array of emails that will be notified if fallback occurs ->setNotificationFromEmail(string) // if you set an admin email, you must set a "from" email for notifications ->setAppName(string) // optional: app name used on notifications ->setCustomHeaders(array) // optional: set/add custom headers ->setCharSet(string) // optional: charset e.g., UTF-8 (default: UTF-8) ->build();
Important: You must use the following method to send email with fallback:
$mailer->sendEmailFallback();
SMTP server selector
If you want to send using a different server, input the server key in the parameter:
$mailer->sendEmailFallback(1); // send using server with key 1
This is useful if server 0 didn't fail but the email is slow to arrive. E.g., On a "forgot password" UI, users can get the email faster if you create a "try again" UI then use an alternative server to send the email again.
Note:
The fallback can go back from the start. If you defined 3 servers (0, 1, and 2) and you selected server 2 to send the email, it can fallback to server 0 then 1. If you enter a key that does not exist in the config, 0 will be used.
If all servers fail, an exception EmailFallback\Exception will be thrown by sendEmailFallback().
Round-robin mode
Use round-robin mode to distribute the load to all SMTP hosts.
To enable round-robin mode, you must use a storage driver to track the last server used to send email.
Available drivers and their config:
files
$driver = 'files'; $driverConfig = [ 'path' => '/var/www/example/emailFallbackCache/' ];
memcached
$driver = 'memcached'; $driverConfig = [ 'host' => '127.0.0.1', 'port' => 11211, 'saslUser' => '', 'saslPassword' => '' ];
Note: Only single server/non-distriubuted memcached is supported at the moment.
redis
$driver = 'redis'; $driverConfig = [ 'host' => '127.0.0.1', 'port' => 6379, 'password' => '', 'database' => 0 ];
Note: Use memcached or redis if available as files is not recommended for heavy usage.
After selecting a driver, set the following in the builder, before the ->build(); method:
->setRoundRobinMode(true) ->setRoundRobinDriver($driver) ->setRoundRobinDriverConfig($driverConfig)
metarush/email-fallback 适用场景与选型建议
metarush/email-fallback 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 206 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 02 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mail」 「php」 「email」 「smtp」 「failover」 「fallback」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 metarush/email-fallback 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 metarush/email-fallback 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 metarush/email-fallback 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Courier offers a convenient and painless solution for creating emails tailored for your Kirby website.
Mail libraries used by Zimbra Api
Extensible library for building notifications and sending them via different delivery channels.
Email+ extends Kirby's email capabilities by adding support for multiple email services using the same Kirby email API.
Laravel contact us form package to send email and save to database
Laravel IMAP client
统计信息
- 总下载量: 206
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 27
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-02-12