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: […]