I'm trying to set up a test email in my controller that outputs the email as it would look, without actually sending the email. I am using CakePHP 2.1
At the top of my controller I have:
App::uses('CakeEmail', 'Network/Email');
And in my controller the method is:
$email = new CakeEmail('default');
$email->from(array('me@example.com' => 'My Site'));
$email->to('you@example.com');
$email->subject('About');
$email->send('My message');
In my email config I have set the $default to Debug mode:
public $default = array(
'transport' => 'Debug',
'from' => 'you@localhost.com',
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
How can I output the email? I have scoured Google and have come back with nothing.