I get this error:
ErrorException [ Error ]: Call to a member function html_body() on a non-object
I've tried all these:
$email->html_body(\View::forge('emails/welcome', $email_data)->render());
$email->html_body(View::forge('emails/welcome', $email_data)->render());
$email->html_body(\View::forge('emails/welcome', $email_data));
$email->html_body(View::forge('emails/welcome', $email_data));
If I load the View before hand and var_dump it, I get a string when using the first one, so logically that should work?
Using FuelPHP 1.1