views:

59

answers:

2

I am building an application that will need to send emails on numerous occations like Account activation. Passwrod Reset link.. various notifications.

I am using Cakephp 1.3.2.

Would prefer a plugin or component where i can create templates and just pass variables and it sends an email.

Thanks a lot in advance

+2  A: 

Why don't you use CakePHP's default functionality?

http://book.cakephp.org/view/269/Sending-a-basic-message

zahstra
Agreed. Seems like Harsha didn't RTM :(. @Harsha -- Cake has a built in EmailComponent. The Bakery has many other "enhanced" versions, some of which have tie-ins with the heavy duty SwiftMailer libraries.
Travis Leleu
i knew of the email component. didnt knew of the templates :(
Harsha M V
+1  A: 

In the past I used SwiftMailer: http://swiftmailer.org/ It's an excellent, flexible and well documented component with a cakephp component available in the bakery: http://bakery.cakephp.org/articles/view/swiftmailer-component-tutorial

Now, though, I usually use the CakePHP core component.

Leo
guess cakephp email component is powerfull enuf for basic stuff.
Harsha M V