Re: How to send E-mail through cake php

2009-12-01 Thread Vidya N
HI, Here we are using cakePHP pretty URLs by uncommenting Configure::write('App.baseUrl', env('SCRIPT_NAME')); in app/config/core.php as mentioned in this link, http://book.cakephp.org/view/333/A-Note-on-mod_rewrite cz of this we are able to run in yahoo server.. but e-mail is not working. Any

Re: How to send E-mail through cake php

2009-12-01 Thread jburns
.htaccess files are essential for CakePHP, so if Yahoo won't allow them, how is Cake running on their servers at all? On Dec 1, 1:20 pm, Vidya N wrote: > Hi thanks for your reply... > we have implemented this.. here we are using yahoo server for hosting which > is not allowing .htaccess (hidden f

Re: How to send E-mail through cake php

2009-12-01 Thread Vidya N
Hi thanks for your reply... we have implemented this.. here we are using yahoo server for hosting which is not allowing .htaccess (hidden files) file to upload. Is it mandatory for sending e-mail... Please reply. Thanks, Vidya On Tue, Dec 1, 2009 at 6:43 PM, jburns wrote: > I have written this

Re: How to send E-mail through cake php

2009-12-01 Thread jburns
I have written this quick note up on my blog so that the code is easier to copy: http://www.jeremy-burns.co.uk/2009/12/cakephp-sending-email-using-the-email-component/ On Dec 1, 11:56 am, jburns wrote: > Here's how I have deployed email using the objects that CakePHP > provides. > > In one appli

Re: How to send E-mail through cake php

2009-12-01 Thread jburns
Here's how I have deployed email using the objects that CakePHP provides. In one application I have a screen where people can register their interest on a site. When the new registration is added, I send them a confirmation email. This controller is called 'registrations'. In the registrations con

Re: How to send E-mail through cake php

2009-12-01 Thread [ ramesh ]
Check this out http://bakery.cakephp.org/articles/view/swiftmailer-component-tutorial Thanks, /Ramesh Sakibanda/ On Tue, Dec 1, 2009 at 4:48 PM, Vidya N wrote: > Hi All, > > Hi, I am cakePHP learner.. I want to integrate Email functionality through > cakePHP. > > If anybody knows.. pleaes help

How to send E-mail through cake php

2009-12-01 Thread Vidya N
Hi All, Hi, I am cakePHP learner.. I want to integrate Email functionality through cakePHP. If anybody knows.. pleaes help me out... Thanks, Vidya Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because

Re: Send E-mail

2008-02-16 Thread b logica
On Feb 16, 2008 8:36 AM, dandreta <[EMAIL PROTECTED]> wrote: > > And how can I do this? > Any another suggestion or help? > > On 15 feb, 21:26, "Wayne Fay" <[EMAIL PROTECTED]> wrote: > > First off, make a little test.php plain PHP file that verifies that > > you can send email using PHP's built-in

Re: Send E-mail

2008-02-16 Thread Samuel DeVore
ilcomponent etc. > > > > > > Wayne > > > > > > > > On 2/15/08, dandreta <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > > Hi! > > > > I am developing my application with Cake 1.2 and I want to h

Re: Send E-mail

2008-02-16 Thread Dardo Sordi Bogado
can worry about the > > emailcomponent etc. > > > > Wayne > > > > > On 2/15/08, dandreta <[EMAIL PROTECTED]> wrote: > > > > > > > > > Hi! > > > I am developing my application with Cake 1.2 and I want to have send e- > > &g

Re: Send E-mail

2008-02-16 Thread dandreta
I am developing my application with Cake 1.2 and I want to have send e- > > mails functionality. > > Inside pages folder, I have the view to send e-mail with the basic > > fields: Destination, Subject and Message(body). I have been reading > > about EmailComponent in Bakery's

Re: Send E-mail

2008-02-15 Thread Wayne Fay
onent etc. Wayne On 2/15/08, dandreta <[EMAIL PROTECTED]> wrote: > > Hi! > I am developing my application with Cake 1.2 and I want to have send e- > mails functionality. > Inside pages folder, I have the view to send e-mail with the basic > fields: Destination, Subject a

Send E-mail

2008-02-15 Thread dandreta
Hi! I am developing my application with Cake 1.2 and I want to have send e- mails functionality. Inside pages folder, I have the view to send e-mail with the basic fields: Destination, Subject and Message(body). I have been reading about EmailComponent in Bakery's article

Re: Using akismet to send e-mail with a form

2007-02-01 Thread Dr. Tarique Sani
On 2/1/07, Jan Boonen <[EMAIL PROTECTED]> wrote: > Does anybody have some experience using akismet and CakePHP? How do I > use it to send e-mails via a form? Akismet works best to filter received SPAM, you can try to use it to filter messages before you send them. However do note that Akismet per

Re: Using akismet to send e-mail with a form

2007-02-01 Thread [EMAIL PROTECTED]
here ya go, have fun and don't forget to read the comments http://www.thinkingphp.org/2006/07/05/remember-the-days-before-spam-a-cakephp-model-for-akismet/ On Feb 1, 9:57 am, "Jan Boonen" <[EMAIL PROTECTED]> wrote: > Hi, > > This is my first post here, but I have been working CakePHP some time >

Using akismet to send e-mail with a form

2007-02-01 Thread Jan Boonen
Hi, This is my first post here, but I have been working CakePHP some time now (it's a great piece of software!). Currently I'm working on a website with an e-mail form. The main problem I have to face is spam- protection. Elsewhere on the forum