CakeEmailを試していますが、問題が発生しています。ブログチュートリアルのadd関数と同様に、add関数にコードを追加しましたが、アイテムを追加すると、undefinedvariableと表示されます。メールコードを削除すると機能します。そのままにしてページを更新すると、アイテムは表示されますが、メールは表示されません。
関数のコードは次のとおりです。
public function add()
{
$this->set('isAddValid', false);
$this->set('addValidationErrors', false);
if ($this->request->is('post'))
{
// If the save is successful, close the dialog and display the success message
// Else, set the error flags.
if ($this->LocalClock->save($this->request->data))
{
$this->set('localClocks', $this->request->data);
$this->LocalClock->save($localClocks);
$this->set('isAddValid', true);
$this->set('addValidationErrors', false);
$email = new CakeEmail('smtp');
$email->from(array('me@example.com' => 'Local Clocks'));
$email->to('you@example.com');
$email->subject('New Local Clock Added');
$email->send('A new local clock has been added.');
CakeEmail::deliver('you@example.com', 'New local Clock', 'New Local Clock Added',
array('from' => 'localhost@localhost'));
}
}
configフォルダーにあるemail.phpファイルは次のとおりです(そこにあるデフォルトのファイルから貼り付けたものをコピーしただけです)。
class EmailConfig {
public $default = array(
'transport' => 'Mail',
'from' => 'you@localhost',
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
public $smtp = array(
'transport' => 'Smtp',
'from' => array('site@localhost' => 'My Site'),
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
'username' => 'user',
'password' => 'secret',
'client' => null,
'log' => false,
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
public $fast = array(
'from' => 'you@localhost',
'sender' => null,
'to' => null,
'cc' => null,
'bcc' => null,
'replyTo' => null,
'readReceipt' => null,
'returnPath' => null,
'messageId' => true,
'subject' => null,
'message' => null,
'headers' => null,
'viewRender' => null,
'template' => false,
'layout' => false,
'viewVars' => null,
'attachments' => null,
'emailFormat' => null,
'transport' => 'Smtp',
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
'username' => 'user',
'password' => 'secret',
'client' => null,
'log' => true,
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
}
どんな助けでもいただければ幸いです
ありがとう