Friday, February 14, 2014

I have problems in sending mail . Help ....

I have problems in sending mail CakePHP 2.4 - from localhost (Windows 7) :
In File AppController have existed :
App::uses('CakeEmail', 'Network/Email');
public $components = array(
    'DebugKit.Toolbar',
    'Session',
'RequestHandler',
'Cookie',
'Email'
);
In File email.php have existed :
public $smtp = array(
'transport' => 'Smtp',
'from' => array('demo@localhost' => 'My website'),
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
'username' => 'myuser',
'password' => 'mypass',
'client' => null,
'log' => false,
 'charset' => 'utf-8',
'headerCharset' => 'utf-8',
);
In File PostsController.php have existed :
        public function email(){
            $email = new CakeEmail("smtp");
            $email->viewVars(array('username' => 'cuongnv','active_link'=>'google.com'));
            $email->to('cuongcntt89@gmail.com');
            $email->subject('Title');
            $email->template('template', 'template');
            $email->send();

        }

File template.ctp have existed in ..view/Emails/html/
But not sending to mail...
Looking forward to the help from everyone . Thank all !

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
 
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: