Flarum 0.1.0-beta8.1 魔改之邮件
2019年3月11日 · 后端
取消注册邮件验证
1 | composer require isaced/flarum-ext-email-verification-switch |
国内邮件推送平台?
暂时没发现有支持的插件。
将邮件格式由纯文本改为 HTML
- 将
vendor/flarum/core/src/Api/Controller/SendConfirmationEmailController.php
90 行的
1 | $this->mailer->raw($body, // 其后省略 |
改为
1 | $this->mailer->send(['html' => $body], [], |
- 将
vendor/illuminate/mail/Mailer.php
213 行起的
1 | $data['message'] = $message = $this->createMessage(); |
改为
1 | $message = $this->createMessage(); |
- 还是
Mailer.php
,将 315 行(左右)的$message->$method($raw, 'text/plain')
改为$message->$method($raw, 'text/html')