Sunday, February 16, 2014

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

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('yourname@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' => 'yourname@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+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: