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

[eluser]runrun[/eluser]
Code:
A PHP Error was encountered

Severity: Warning

Message: mail() [function.mail]: SMTP server response: 550 <[email protected]>, Recipient unknown

Filename: libraries/Email.php

Line Number: 1519

Can you help me fix this please ?

This is my email code. And I use windows hosting.
Code:
$this->load->helper('email');
        $this->load->library('email');

            $email=$this->input->post('email');
            $name=$this->input->post('name');
            $subject=$this->input->post('subject');
            $message=$this->input->post('message');

            $this->email->from($email, $name);
            $this->email->subject($subject);
            $this->email->message($message);
            $this->email->to('[email protected]');
            $this->email->send();
            $this->load->view('contact_success.php');


Messages In This Thread
mail error - by El Forum - 11-30-2009, 10:02 AM
mail error - by El Forum - 12-11-2009, 04:22 AM
mail error - by El Forum - 12-11-2009, 04:40 AM
mail error - by El Forum - 12-11-2009, 05:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB