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: cakephp 1.3 how to send email

2013-03-05 Thread Anja Liebermann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Joseph, I post an example I have in a 1.3 app working: In a controller I want to receive an email in a certain case: if($this->data['Rating']['kommentar'] != ''){ // notification that a comment was posted $this->Email->from= 'Zigarrenlounge

cakephp 1.3 how to send email

2013-03-04 Thread Dakota
It is all detailed in the book (book.cakephp.org). Give it a read. -- 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

cakephp 1.3 how to send email

2013-03-04 Thread Joseph zhu
Hello there: I am a new for cakephp, I want to know how to make send email function. Who can help me, and give me some detail instructions. Thank you so much. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message be

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 per 5 min in cakephp 1.3

2011-06-10 Thread Ryan Schmidt
On Jun 9, 2011, at 08:05, sandeep sachan wrote: > I am trying to send mail its work to every 5 min to send email in user > account but one problem is there can you solve this problem ... problem is > that when i m sending mail its sleep for 5 min and this time i m trying to > viewing view det

Re: how to send email per 5 min in cakephp 1.3

2011-06-09 Thread sandeep sachan
hello every one I am trying to send mail its work to every 5 min to send email in user account but one problem is there can you solve this problem ... problem is that when i m sending mail its sleep for 5 min and this time i m trying to viewing view detail of users but its not show .. sleep thr

Re: how to send email per 5 min in cakephp 1.3

2011-06-07 Thread Ryan Schmidt
On Jun 7, 2011, at 23:31, Sergei wrote: > I recommend making dedicated script for this task and scheduling it with > cron. Dont use CakePHP for scheduled tasks, it's overkill for the server. There's no problem using CakePHP as the framework for that dedicated script. If you want to send schedu

Re: how to send email per 5 min in cakephp 1.3

2011-06-07 Thread Sergei
I recommend making dedicated script for this task and scheduling it with cron. Dont use CakePHP for scheduled tasks, it's overkill for the server. S. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp

Re: how to send email per 5 min in cakephp 1.3

2011-06-07 Thread Phang Mulianto
you can create the sending email page, with parameter if you likke, and for the timer, scheduled with cron and call your cake file path using curl/wget, just like a web browser request. you can call it from the local machine or from other machine using curl or wget. On Tue, Jun 7, 2011 at 9:15

how to send email per 5 min in cakephp 1.3

2011-06-07 Thread sandeep sachan
hello, everyone I am new in cakephp ..i am trying to send email to multi users .. but this email send per 1 min every user can you help me ..??? /// -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.

how to send email per 5 min in cakephp 1.3

2011-06-07 Thread sandeep sachan
hello, everyone I am new in cakephp ..i am trying to send email to multi users .. but this email send per 1 min every user can you help me ..??? /// -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.

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://ca

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://ca

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&q

Re: how to send email

2009-03-19 Thread SPS
you can use the phpmailer component to send email to gmail or yahoo. once you have copied the phpmailer folder to your app\vendors folder, please edit the email.php file in the app\controllers\components folder. In email.php pls edit the send() function with the following, i have shown mail sendin

Re: how to send email

2009-03-19 Thread nhathoang nhathoang
I used to send mail by cakephp but not to succeed, I don't know why, there is a way to send mail you should use which is phpmailer, you show write a component and attach phpmailer to it 2009/3/20 dr. Hannibal Lecter > > You send an email to yahoo and gmail the same way you send to any > other a

Re: how to send email

2009-03-19 Thread dr. Hannibal Lecter
You send an email to yahoo and gmail the same way you send to any other account, right? Also, why are you working on cakephp 1.1? On Mar 19, 2:40 pm, sandhya wrote: > send email to yahoo and gmail accounts using cakephp 1.1.19.6305 --~--~-~--~~~---~--~~ You recei

how to send email

2009-03-19 Thread sandhya
send email to yahoo and gmail accounts using cakephp 1.1.19.6305 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from thi

Re: how to send email request

2008-11-10 Thread Dardo Sordi Bogado
Two easy steps: 1. Read the manual at http://manual.cakephp.org or use google to find a suitable tutorial. 2. Sit down an code. - Dardo Sordi. On Mon, Nov 10, 2008 at 3:11 AM, Elavavazhagan Chidambaram <[EMAIL PROTECTED]> wrote: > hi; > now i want email request link(for example i join the mem

how to send email request

2008-11-10 Thread Elavavazhagan Chidambaram
hi; now i want email request link(for example i join the member the provider give the link) so how i sent the email link --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send

Re: How to send email using build-in email component

2008-09-01 Thread [EMAIL PROTECTED]
I made it with SMTP gmail account. On Aug 24, 3:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > thanks for your reply. Does that mean firstly I need to set up a mail > server on my machine, and then try to use php mail function to see > what is happening? --~--~-~--~~-

Re: How to send email using build-in email component

2008-08-24 Thread [EMAIL PROTECTED]
thanks for your reply. Does that mean firstly I need to set up a mail server on my machine, and then try to use php mail function to see what is happening? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" gro

Re: How to send email using build-in email component

2008-08-24 Thread clemos
Hi By default, it'll simply use the mail() php function (see the email component sourcecode). You should first try to use "mail()" without Cake, to see if it's a Cake issue or not (I think it's not). If your mail never arrives, then your problem is likely with your server setup, not with Cake. If

How to send email using build-in email component

2008-08-24 Thread [EMAIL PROTECTED]
Hi, there I have the following code to send a very simple email, $this->Email->to = '[EMAIL PROTECTED]'; $this->Email->subject = 'Welcome to our website'; $success = $this->Email->send('Welcome to our website. Please login using the following link'); if ($success) { $this->Session->setF

Re: How to send email in cake php

2008-04-22 Thread Rocky
I am using php cake version 1.1.19.6305 On Apr 22, 2:55 pm, "dr. Hannibal Lecter" <[EMAIL PROTECTED]> wrote: > Are you using the 1.2 branch? > > http://api.cakephp.org/1.2/class_email_component.htmlhttp://book.cakephp.org/view/176/email > > On Apr 22, 9:49 am, Rocky <[EMAIL PROTECTED]> wrote: > >

Re: How to send email in cake php

2008-04-22 Thread Szilárd Orbán
Do you need simple or HTML email? Do you use local email sending server or a remote one? Do you intend sending to specific email addresses (mostly internal) or to any host (including yahoo, hotmail that could cause headaches by emails going to junk) Szilard On Tue, Apr 22, 2008 at 10:49 AM, Rocky

Re: How to send email in cake php

2008-04-22 Thread k10
I would recommend you to check out the cake bakery and the manual first. bakery ==> bakery.cakephp.org. Anyhow I searched on the bakery and found this http://bakery.cakephp.org/articles/view/sending-email-with-phpmailer Hope it helps. -Ketan. http://www.innovatechnologies.in http://www.propertyj

Re: How to send email in cake php

2008-04-22 Thread dr. Hannibal Lecter
Please reply to the whole group, for future reference. You wrote: > Well, I am using cake php version 1.1.19.6305 Did you read these articles on the bakery? http://bakery.cakephp.org/tags/view/phpmailer On Apr 22, 11:55 am, "dr. Hannibal Lecter" <[EMAIL PROTECTED]> wrote: > Are you using the 1

Re: How to send email in cake php

2008-04-22 Thread dr. Hannibal Lecter
Are you using the 1.2 branch? http://api.cakephp.org/1.2/class_email_component.html http://book.cakephp.org/view/176/email On Apr 22, 9:49 am, Rocky <[EMAIL PROTECTED]> wrote: > Would you plz tell me the coding of controlle,views etc. I had already > include phpmailer > > Thanks > > On Apr 22, 1

Re: How to send email in cake php

2008-04-22 Thread Rocky
Would you plz tell me the coding of controlle,views etc. I had already include phpmailer Thanks On Apr 22, 11:40 am, k10 <[EMAIL PROTECTED]> wrote: > Tryhttp://sourceforge.net/phpmailer.You could use this with the > vendor function incake. > > Hope it helps. > -Ketan.http://www.innovatechnologie

Re: How to send email in cake php

2008-04-21 Thread k10
Try http://sourceforge.net/phpmailer .You could use this with the vendor function in cake. Hope it helps. -Ketan. http://www.innovatechnologies.in http://www.propertyjungle.in On Apr 22, 1:43 am, Rocky <[EMAIL PROTECTED]> wrote: > Plz let me know how to send email through cake php &

How to send email in cake php

2008-04-21 Thread Rocky
Plz let me know how to send email through cake php Thanks Rocky --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubs