I have read every tutorial and discussion but I can't get the email to
send out. Below is an excerpt from my controller. It redirects fine,
but I still get "Simple email not sent". Is there some setting in the
core or somewhere else that I'm missing?
var $components = array('Email');
function sendemail(){
$this->Email->to = '[email protected]';
$this->Email->subject = 'Cake test simple email';
$this->Email->replyTo = 'nore...@localhost';
$this->Email->from = 'Cake Test Account <nore...@localhost>';
$this->Email->delivery = 'mail';
if ( $this->Email->send('Here is the body of the email') ) {
$this->Session->setFlash('Simple email sent');
} else {
$this->Session->setFlash('Simple email not sent');
}
$this->redirect('/offices');
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---