Hello reader if you want to send email using the email component in cakephp you need to run the email component of cakephp
ex
You should place email send routine in your AppController:
function _sendMail($to,$subject,$template) {
$this->Email->to = $to;
// $this->Email->bcc = array('secret@example.com'); // copies
$this->Email->subject = $subject;
$this->Email->replyTo = 'noreply@domain.com';
$this->Email->from = 'MyName <noreply@domain.com>';
$this->Email->template = $template;
$this->Email->sendAs = 'text'; //Send as 'html', 'text' or 'both' (default is 'text')
$this->Email->send();
}
Here $to is sender email.
Then use it from ANY controller like this:
$this->_sendMail($this->data['User']['email'],'Thanks
for registering!','register');
0 Comment(s)