Codeigniter email |
[eluser]Hani A.[/eluser]
Yup - your "Reply-To:" header is completely empty. (As shown in the debug info.) Try hard coding info for the "From" setting just to see if it works. Replace this: Code: $this->email->from($this->input->post('email'), $this->input->post('name')); With this: Code: $this->email->from("[email protected]", "Me"); If that works, then something is wrong with your post values. (If you are running on localhost or sending via SMTP instead of the default "mail", you may get another error when trying to send from "[email protected]".) |
Messages In This Thread |
Codeigniter email - by El Forum - 11-13-2009, 12:52 PM
Codeigniter email - by El Forum - 11-13-2009, 01:53 PM
Codeigniter email - by El Forum - 11-13-2009, 02:43 PM
Codeigniter email - by El Forum - 11-13-2009, 02:46 PM
Codeigniter email - by El Forum - 11-13-2009, 03:33 PM
Codeigniter email - by El Forum - 11-13-2009, 05:50 PM
Codeigniter email - by El Forum - 11-13-2009, 07:55 PM
Codeigniter email - by El Forum - 11-13-2009, 09:10 PM
Codeigniter email - by El Forum - 11-13-2009, 09:12 PM
Codeigniter email - by El Forum - 11-13-2009, 10:51 PM
Codeigniter email - by El Forum - 11-14-2009, 07:52 AM
Codeigniter email - by El Forum - 11-14-2009, 06:15 PM
Codeigniter email - by El Forum - 11-14-2009, 08:11 PM
Codeigniter email - by El Forum - 11-15-2009, 01:56 AM
|