draw/post-office-bundle
Composer 安装命令:
composer require draw/post-office-bundle
包简介
README 文档
README
Be since the Symfony/Mailer is not completed yet some behavior may be affected in later release, consider this bundle as experimental too
This bundle allow to delegate creation of email to a specific class.
It also allow configuration for a default from.
Configuration
draw_post_office:
default_from: 'support@example.com'
Instead of building your email in your controller directly you create a class that extend from the Symfony\Component\Mime\Email and create a "writer" for it.
Any service that implement the Draw\Bundle\PostOfficeBundle\Email\EmailWriterInterface will be register as a writer. The getForEmails must return a map of method with priority as the value to register method as a writer (if you return the method as the value it will consider it's priority to be 0). The system will detect if the email match the class of the first argument of the method and call it if needed.
The Post Office declare a listener for Symfony\Component\Mailer\Event\MessageEvent to hook it to the symfony mailer.
By convention it's recommend to create a Email folder in which you will create all your email class and also your writer class that does implement the Draw\Bundle\PostOfficeBundle\Email\EmailWriterInterface.
Example
Let's create a forgot password email, this class will contain the minimum information to compose the email, in that case the email of the user that trigger the forgot password email flow.
<?php namespace App\Email; use Symfony\Bridge\Twig\Mime\TemplatedEmail; class ForgotPasswordEmail extends TemplatedEmail { private $emailAddress; public function __construct(string $emailAddress) { $this->emailAddress = $emailAddress; parent::__construct(); } /** * The email address of the person who forgot is email */ public function getEmailAddress(): string { return $this->emailAddress; } }
We must create a writer for the email:
<?php namespace App\Email; use App\Email\ForgotPasswordEmail; use App\LostPasswordTokenProvider; use Draw\Bundle\PostOfficeBundle\Email\EmailWriterInterface; class ForgotPasswordEmailWriter implements EmailWriterInterface { private $lostPasswordTokenProvider; public function __construct(LostPasswordTokenProvider $lostPasswordTokenProvider) { $this->lostPasswordTokenProvider = $lostPasswordTokenProvider; } public static function getForEmails(): array { return ['compose']; // Or ['compose' => 0]; } public function compose(ForgotPasswordEmail $forgotPasswordEmail) { $emailAddress = $forgotPasswordEmail->getEmailAddress(); $forgotPasswordEmail ->to($emailAddress) ->subject('You have forgotten your password !') ->htmlTemplate('emails/forgot_password.html.twig') ->context([ 'token' => $this->lostPasswordTokenProvider->generateToken($emailAddress) ]); } }
The basic controller example:
<?php namespace App\Controller; use App\Email\ForgotPasswordEmail; use Symfony\Component\Mailer\MailerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\RedirectResponse; class ForgotPasswordController { public function forgotPasswordAction( Request $request, MailerInterface $mailer ): Response { if ($request->getMethod() == Request::METHOD_GET) { return $this->render('users/forgot_password.html.twig'); } // ... You should have a logic to validate there is a user and send a different email ... / $mailer->send(new ForgotPasswordEmail($request->request->get('email'))); return new RedirectResponse($this->generateUrl('check_email')); } }
That way you keep you controller clean and structure how email should be written and overridden.
The system also pass the Envelope parameter as the second argument in case you need it.
If you look at the Draw\Bundle\PostOfficeBundle\Email\DefaultFromEmailWriter you will see how to create a writer that is call for all the email that are sent.
draw/post-office-bundle 适用场景与选型建议
draw/post-office-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.18k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 11 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mailer」 「symfony」 「sonata」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 draw/post-office-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 draw/post-office-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 draw/post-office-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Sonata Extra admin features
ACL list filtering for SonataAdmin
The bundle for easy using json-rpc api on your project
This bundle track command execution in the database.
Creates new sare mail transport for laravel applications
Bundle Symfony DaplosBundle
统计信息
- 总下载量: 3.18k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-13