Re: How to send Email in Cakephp

2013-05-16 Thread raj kumar Pustela
hi Santhos, follow below process UsersController: in add method You have to copy past same as.. Step 1: /** * add method * * @return void */ public function add() { if ($this->request->is('post')) { $this->User->create(); if ($this->User->save($this->request->data)) { *$this->__sendEmail

Re: How to send Email in Cakephp

2013-05-16 Thread Santosh Verma
how to use mulltiple dropdown list,checkbox ,radio buttons in cake-php in registration page? On Wednesday, 14 September 2011 22:11:21 UTC+5:30, tubiz wrote: > > Please I have a register action in my user controller how do i send a > mail to a user after he has successfully registered and his de

Re: How to send Email in Cakephp

2011-09-14 Thread arron
take a look at the book http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP $this->Email->smtpOptions = array( 'port'=>'465', 'timeout'=>'30', 'host' => 'ssl://smtp.gmail.com', 'username'=>'your_usern...@gmail.com', 'password'=>'your_gmail_password', ); some

Re: How to send Email in Cakephp

2011-09-14 Thread WyriHaximus
For 1.3: http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP For 2.0: http://book2.cakephp.org/en/core-utility-libraries/email.html Both include gmail examples :). On Sep 14, 6:41 pm, tubiz wrote: > Please I have a register action in my user controller how do i send a > mail to a user

Re: How to send Email in Cakephp

2011-09-14 Thread Teddy Zeenny
What CakePHP version are you using ? On Wed, Sep 14, 2011 at 7:41 PM, tubiz wrote: > Please I have a register action in my user controller how do i send a > mail to a user after he has successfully registered and his details > has been stored in the database. > > I would like to use Google SMTP

How to send Email in Cakephp

2011-09-14 Thread tubiz
Please I have a register action in my user controller how do i send a mail to a user after he has successfully registered and his details has been stored in the database. I would like to use Google SMTP to send the mail. How do I also send a mail to all registered users as well. -- Our newest

Re: how to send email in cakephp

2010-05-08 Thread Dilip Godhani
hi, In cake php Email component is there use this component of cake php Bye On Sat, May 8, 2010 at 5:11 PM, MANOJ DHAMAL wrote: > How to send email for welcome message when user do login? Which > components required for it? > > Check out the new CakePHP Questions site http://cakeqs.org and help

Re: how to send email in cakephp

2010-05-08 Thread Ma'moon
A small google search will lead you to http://book.cakephp.org/view/176/Email On Sat, May 8, 2010 at 7:41 AM, MANOJ DHAMAL wrote: > How to send email for welcome message when user do login? Which > components required for it? > > Check out the new CakePHP Questions site http://cakeqs.org and help

how to send email in cakephp

2010-05-08 Thread MANOJ DHAMAL
How to send email for welcome message when user do login? Which components required for it? Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group.