Welcome Guest, Not a member yet? Register   Sign In
PHP mail() works but $this->email->send() does not
#14

[eluser]louisl[/eluser]
[quote author="dangermark" date="1301976185"]Isn't that beside the point though?[/quote]

What I mean is you may be unnecessarily changing defaults, if mail() works then so should CI without any server related config changes. A typical email of mine is simply this:-

Code:
$this->load->library('email');

$config['mailtype'] = 'html';

$this->email->initialize($config);
    
$this->email->from($from_email, $from_name);
$this->email->to($to);
$this->email->subject($subject);
$this->email->message($message_html);
$this->email->set_alt_message($message_plain);
$this->email->send();


Messages In This Thread
PHP mail() works but $this->email->send() does not - by El Forum - 03-24-2011, 11:03 PM
PHP mail() works but $this->email->send() does not - by El Forum - 03-25-2011, 04:34 PM
PHP mail() works but $this->email->send() does not - by El Forum - 03-25-2011, 09:03 PM
PHP mail() works but $this->email->send() does not - by El Forum - 03-25-2011, 09:13 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 01:16 AM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 03:16 AM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 04:59 AM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 11:24 AM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 01:33 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 04:10 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 04:26 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 05:03 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 05:04 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 05:17 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 05:27 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 06:17 PM
PHP mail() works but $this->email->send() does not - by El Forum - 04-04-2011, 06:39 PM
PHP mail() works but $this->email->send() does not - by El Forum - 06-06-2011, 08:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB