我正在尝试使用 cakephp shell 发送电子邮件。以下是我的代码:
<?php
error_reporting(0);
class EmailShell extends AppShell {
public $uses = array('Email');
public function show() {
$Email = new CakeEmail();
$Email->from('abc@gmail.com');
$Email->to('xyz@gmail.com');
$Email->subject('Forgot Password');
$Email->send();
}
}
?>
当我在 shell 中运行它时,我收到以下错误:
Fatal error: Class 'CakeLog' not found in /mnt/public_html/music_directory/web/cakephp/app/Config/bootstrap.php on line 172
我哪里错了?我该如何解决?