Online Forum To Support Coders With Technical Assistance - Read Write Execute

How to send email in cakephp ?

Ankit Agrawal
Ankit Agrawal
Published on September 12, 2015 · 1 min read
<?php
$Email = new CakeEmail();
$Email->from(array('noreply@codeexecute.com' => 'No Reply codeexecute.com'));
$Email->to('info@codeexecute.com');		
$Email->subject('Your email Subject');		
$Email->template('default');
$Email->emailFormat('html');
$Email->send('Your email content');
?>
Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article How to get geolocation data from postal code Next Article → How to create profile url (http://sitename/username/) in cakephp