Welcome Guest, Not a member yet? Register   Sign In
Fatal error when sending mail
#1

[eluser]ogib[/eluser]
Hi friends,
I have the following code in my controller:
Code:
$this->load->library('email');

$this->email->form('[email protected]','Team OnePage');
$this->email->to("[email protected]");
$this->email->subject('A test email from CodeIgniter using Gmail');
$this->email->message("I can now email from CodeIgniter using Gmail as my server!");
$this->email->send();
but once you start the application gives me the following error:
Fatal error: Call to undefined method CI_Email::form() in D:\xampp\htdocs\www\application\controllers\Email.php on line 38
#2

[eluser]DarkManX[/eluser]
that is the 38. line? the one with $this->email->from? just fix "form" to "from" or just save your latest version on the file!
#3

[eluser]ogib[/eluser]
Quote:$this->email->form('[email protected]','Team OnePage');
Technical mistake!
Thanks for helping me see it!




Theme © iAndrew 2016 - Forum software by © MyBB