Welcome Guest, Not a member yet? Register   Sign In
Blank page for Email test
#2

[eluser]webnology[/eluser]
This is the code

Code:
function sendTestMail {

        $this->load->library('email');
    
        $config['protocol']  = 'smtp';
        $config['smtp_host'] = 'mailing.example.com';
        $config['smtp_user'] = 'user';
        $config['smtp_pass'] = 'pwd';
    
        $this->email->initialize($config);

        $this->email->from('[email protected]', 'Someone');
        $this->email->to('[email protected]');
        $this->email->subject('Subject');
        $this->email->message('Test');
        $this->email->send();
    }

Should be fine, no?


Messages In This Thread
Blank page for Email test - by El Forum - 07-26-2011, 05:42 AM
Blank page for Email test - by El Forum - 07-26-2011, 09:41 AM
Blank page for Email test - by El Forum - 07-26-2011, 12:00 PM
Blank page for Email test - by El Forum - 07-27-2011, 03:19 AM
Blank page for Email test - by El Forum - 07-27-2011, 04:12 AM
Blank page for Email test - by El Forum - 07-27-2011, 05:52 AM
Blank page for Email test - by El Forum - 07-27-2011, 02:49 PM



Theme © iAndrew 2016 - Forum software by © MyBB