【发布时间】:2011-11-12 23:12:14
【问题描述】:
我正在尝试使用 Cake 的“电子邮件”组件发送电子邮件。我已将组件包含到我的控制器中,并且我正在使用以下代码尝试发送电子邮件。
$this->Email->from = 'Glecto <noreply@glecto.com>';
$this->Email->to = 'gary@glecto.com';
$this->Email->replyTo = 'noreply@glecto.com';
$this->Email->subject = 'Let\'s get started!';
$this->Email->delivery = 'mail';
$this->Email->send('Thank you for signing up');
我还检查了我的 php.ini 以确保 SMTP 设置设置正确。
谁能发现我在这里做错了什么?
【问题讨论】:
-
您是否通过尝试使用 PHP 自己的
mail()函数发送邮件来检查 SMTP 设置是否正确?
标签: model-view-controller cakephp components php