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

2014-02-16 Thread kdubya
You say you are running on Windows 7 which means you probably don't have an 
SMTP mail server running unless you have specifically set one up. 

I do development on a Win 7 machine but for Email testing I use my 
production linux server. So in my email.php file instead of using 
localhost, I point to my production server. Here is an example SMTP config:

public $smtp = array(
'transport' => 'Smtp',
'from' => array('yourn...@example.com' => 'Your Name'),
'host' => 'mail.example.com', // This could be smtp.example.com or some 
such according to your DNS record
'port' => 25,
'timeout' => 30,
'username' => 'yourn...@example.com',
'password' => 'password',
'client' => null,
'log' => true,
);

-- 
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+unsubscr...@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.


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

2014-02-15 Thread Nguyen Cuong
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('cuongcnt...@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+unsubscr...@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.