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
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
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
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
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
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
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
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 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.