How to load a view from a controller in the blog module
I am trying to send an email from the blog controller when sending an email when a comment is posted.
$this->email->message($this->load->view('confirmComment-html', $data, FALSE));
This gives me the error: Unable to locate the file: blog/views/confirmComment-html.php
How can I load the view? The view is in: fuel/modules/blog/views
Comments