Re: CakePHP 3.0 (Send html email without template)

2015-04-04 Thread mark_story
When you don't use a template you can't interpolate variables. Either interpolate the variables into the string you are sending, or use a template. -Mark On Tuesday, 31 March 2015 03:32:18 UTC-4, Rodrigo Aiello wrote: > > Hello, > > I'm trying to send an html email without template, but the v

CakePHP 3.0 (Send html email without template)

2015-03-31 Thread Rodrigo Aiello
Hello, I'm trying to send an html email without template, but the variables it´s not working. $email = new Email('default'); $email->emailFormat('html') ->to($toAddress) ->subject('Test') ->viewVars(['value' => '12345']) ->send('Here is your value: '); I'm doing something w