CakeEmail doesnt send message from localhost -


i using cakeemail send emails localhost error 404 page not found

$email =new cakeemail(); $email->template('users/recap', 'recap'); $email->emailformat('html'); $email->viewvars(array('message' => "this body of message")); $email->from(array('afaf.seocom@gmail.com' => 'icicpermis')); $email->to('afaf.seocom@gmail.com'); $email->cc(array('mohamed.seocom@gmail.com')); $email->subject('subject email');       $email->send();  var_dump($email);  if ($email->send()){     echo "sent";     die; } else  {     echo "not sent";     die; } 


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -