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');
#2

[eluser]abedzilla[/eluser]
i have the same problem too
#3

[eluser]runrun[/eluser]
The problem your server config. Ask host technician to fix it for u.
#4

[eluser]abedzilla[/eluser]
what server config?
the email server or the web server?
and which part of config should i change?

thanks before




Theme © iAndrew 2016 - Forum software by © MyBB