Cakephp でメッセージを送信したり、新しいユーザーを登録しようとすると、次のメッセージが表示されます。
Could not send email.
エラー: 内部エラーが発生しました。スタックトレース
CORE\Cake\Network\Email\MailTransport.php line 47 → MailTransport->_mail(string, string, string, string, null)
CORE\Cake\Network\Email\CakeEmail.php line 1066 → MailTransport->send(CakeEmail)
CORE\Cake\Controller\Component\EmailComponent.php line 347 → CakeEmail->send(null)
APP\Plugin\Messages\Controller\MessagesController.php line 158 → EmailComponent->send()
[internal function] → MessagesController->add(string)
CORE\Cake\Controller\Controller.php line 486 → ReflectionMethod->invokeArgs(MessagesController, array)
CORE\Cake\Routing\Dispatcher.php line 187 → Controller->invokeAction(CakeRequest)
CORE\Cake\Routing\Dispatcher.php line 162 → Dispatcher->_invoke(MessagesController, CakeRequest, CakeResponse)
APP\webroot\index.php line 96 → Dispatcher->dispatch(CakeRequest, CakeResponse)
私はCakePhpの初心者で、app/Config/email.phpでこのファイルを編集しています
public $smtp = array(
'transport' => 'Smtp',
'from' => array('simone.zambenedetti@uniroma1.it' => 'My Site'),
'host' => 'ssl://smtp.gmail.com',
'port' => 465,
'timeout' => 30,
'username' => '**user**', //hidden
'password' => '**my secret**', //hidden
'client' => null,
'log' => false
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
lib/Cake/Network/Email/CakeEmail.php も編集します
protected $_transportName = 'Smtp';
lib/Cake/Network/Email/SmtpTransport.php を編集します。
public function config($config = array()) {
$default = array(
'host' => 'ssl://smtp.gmail.com',
'port' => 465,
'timeout' => 30,
'username' => 'simone.zambenedetti@uniroma1.it',
'password' => 'enomis58',
'client' => null,
'tls' => false
);
$this->_config = $config + $default;
}
助けてください...メールやメッセージではなく、すべてがうまくいきます。エラーを再現したい場合は、私のサイト http://bbcd.bio.uniroma1.it/eventi/に登録してください。
Thx 誰もが私に答えます。
ここにコード:
foreach($usersTo as $userTo) {
if($userTo['User']['notification'] && $userTo['User']['id']!=$this->Auth->user('id')) {
$this->set('message_id', $parent_id);
$this->set('message', $this->request->data['Message']['message']);
$this->Email->reset();
$this->Email->from = Configure::read('evento_settings.systemEmail');
$this->Email->to = $userTo['User']['username'].' <'.$userTo['User']['email'].'>';
$this->Email->replyTo = Configure::read('evento_settings.systemEmail');
$this->Email->return = Configure::read('evento_settings.systemEmail');
$this->Email->subject = __('You have a new message in').' ';
$this->Email->subject.= Configure::read('evento_settings.appName');
$this->Email->delivery = 'mail';
$this->Email->template = 'Messages.new_message';
$this->Email->sendAs = 'both';
$this->Email->send();
//debug($this->Session->read('Message.email'));exit;
}