Welcome Guest, Not a member yet? Register   Sign In
Email problem
#1

[eluser]HooJee[/eluser]
Hi Guys

I am trying to send mail using the email lib. However, whenever I execute it the echo message and print_debugger method are not executed and the email does not reach my inbox. Code below:

Code:
$ADMIN_EMAIL="[email protected]";

// get POST variables
$name = $this->input->post('name');
$email = $this->input->post('email');
$comments = $this->input->post('comments');

// send email
$this->email->from($email, $name);
$this->email->to($ADMIN_EMAIL);
$this->email->subject('Message sent from MySite.com');
$this->email->message($comments);
$this->email->send();
echo $this->email->print_debugger();
echo "email sent";


Messages In This Thread
Email problem - by El Forum - 08-16-2009, 06:25 AM
Email problem - by El Forum - 08-16-2009, 06:27 AM
Email problem - by El Forum - 08-16-2009, 06:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB