大家早上好,
我目前正在使用CakePHP.
我希望在CakePHP发送电子邮件后设置一个事件,因为我想在数据库中存储此电子邮件的日志,其中包含发件人,接收者,主题和正文的单独列.
目前我正在使用本机日志系统(电子邮件的所有标题和正文在同一个地方),但调试变得太乱.
CakeEmail类不提供回调方法,我没有找到任何方法来调用这种事件而不编辑CakeEmail类.
当然我可以创建一个扩展本地CakeEmail类的MyCakeEmail类,但这意味着在代码中更改每个新的CakeEmail().
你有什么建议?
非常感谢!
(抱歉英文不好,不是我的母语)
使用自定义记录器:
原文链接:https://www.f2er.com/php/138660.htmlImplement your own logger具有您想要的数据库功能,并在引导程序中为电子邮件范围配置它,这是电子邮件日志的默认范围或更改电子邮件类配置中的整个日志记录. See this part of the email class.
1161: $contents = $this->transportClass()->send($this); 1162: if (!empty($this->_config['log'])) { 1163: $config = array( 1164: 'level' => LOG_DEBUG,1165: 'scope' => 'email' 1166: ); 1167: if ($this->_config['log'] !== true) { 1168: if (!is_array($this->_config['log'])) { 1169: $this->_config['log'] = array('level' => $this->_config['log']); 1170: } 1171: $config = $this->_config['log'] + $config; 1172: } 1173: CakeLog::write( 1174: $config['level'],1175: PHP_EOL . $contents['headers'] . PHP_EOL . $contents['message'],1176: $config['scope'] 1177: ); 1178: }
使用你自己的班级 – 但做得对
Of course I can create a MyCakeEmail class that extends the native CakeEmail class,but this means changing every new CakeEmail() yet in the code.
那么你可以使用自己的电子邮件类.但是在代码中到处都是新的SomeClass(),无论如何都不是好事.你只知道原因.另一个不容易测试的原因.
而是在继承链的上层(AppController,AppModel …)的某些类中执行此操作:
public function getEmailInstance($config = null) { return new MyEmailClass($config); }
这允许您简单地“全局”更改类,并在测试中模拟方法.