Welcome Guest, Not a member yet? Register   Sign In
Loading Email Body From A File
#1

[eluser]omed habib[/eluser]
Hey guys,

I'm trying to load the body of an email from an external file. I assumed the way to do this is this:
Code:
$this->load->library('email');        
$this->email->from('[email protected]', 'Sender');
$this->email->to('[email protected]');
$this->email->subject('Subject');

$emailbody = $this->load->view('contactus/emailtemplate');            
$this->email->message($emailbody);        

$this->email->send();

This doesn't work and only sends a blank email. Any ideas anyone?
#2

[eluser]Seppo[/eluser]
try this

Code:
$emailbody = $this->load->view('contactus/emailtemplate',array(),true);
#3

[eluser]omed habib[/eluser]
Worked perfect, thanks!




Theme © iAndrew 2016 - Forum software by © MyBB