Bonjour à tous,
j’utilise la fonction CakeEmail pour l'envoi des email, quand j'envoie le formulaire j'ai ce message d'erreur: Error: An Internal Error Has Occurred.
App::uses('CakeEmail','Network/Email');
$email=new CakeEmail();
$email->config('smtp');
$email->to($data'Contact']'email']);
$email->subject('test email');
$email->send('ceci est un email test');
et voici ma configuration de fichier email.php
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',
);