Category: CakePHP
-

Send email in Cakephp using SMTP With Source and Video
How to send mail in CakePHP 2.x First you have to configure your cakephp for sending mail. Go to: App/Config/email.php Now there are two method you can use: Using sendmail function Using SMTP For sendmail : public $default = array( ‘transport’ => ‘Mail’, ‘from’ => ‘[email protected]’, ‘charset’ => ‘utf-8’, ‘headerCharset’ => ‘utf-8’, ); For SMTP:…
-
The Most Common Mistakes CakePHP Developers Make : A Tutorial for Beginners
CakePHP is an amazing PHP framework, but it has a steep learning curve! It requires a good amount of research and training to become an expert. I have been fortunate to use CakePHP for over 7 years now, and in that time I’ve had the honor of working with many members of the CakePHP community. In…
-
How to send email in Cakephp using sendmail or SMTP
How to send mail in CakePHP 2.x First you have to configure your cakephp for sending mail. Go to: App/Config/email.php Now there are two method you can use: Using sendmail function Using SMTP For sendmail : public $default = array( ‘transport’ => ‘Mail’, ‘from’ => ‘[email protected]’, ‘charset’ => ‘utf-8’, ‘headerCharset’ => ‘utf-8’, ); For SMTP:…
-
Getting Started with CakePHP
CakePHP is widely used framework of PHP. It is completely build in MVC structure and almost have all built in functions which boost your web application. What you need: A running web server. I am going to assume you’re using Apache, though the instructions for using other servers should be very similar. I might have…