I can't get the content of email. $content variable are not populated.
$this->request->data['message'] come from a textarea input which allow HTML.
Controller
debug($this->request->data['mensagem']); // Output: <p>\n\ttssseste<\/p>\n
App::uses('CakeEmail', 'Network/Email');
$email = new CakeEmail();
$email->emailFormat('html');
$email->from(array('noreply@domain.com' => 'System'));
$email->to($this->AuthExtended->user('email'));
$email->subject(__('Sample email'));
$email->template('test_email');
$email->viewVars(array('content' => $this->request->data['mensagem']));
$email->send();
view/Emails/html/test_email.ctp
<?php echo $content; ?>
I get the email but without content. If I change test_email.ctp to:
Foo <?php echo $content; ?>
I get only Foo instead of Foo plus $content.
UPDATE
After $email->viewVars(array('content' => $this->request->data['mensagem'])); I tried to debug with debug($email->viewVars()); which show my "posted" variable, but, nothing inside the views.
array(
'content' => 'foo bar here'
)
mensageminput? – Steve Nov 23 '12 at 15:28contentmanually:array('content' => 'Bar')? – vanneto Nov 23 '12 at 15:35