Welcome Guest, Not a member yet? Register   Sign In
Sending EMail From Code Igniter 2.0.1
#7

[eluser]raiser[/eluser]
Thanks InsiteFX and LuckyFella73 for replying me...

I have installed the mail server.. What should i do next? i tried with some code but still i got error message only.

My code is,

Code:
class Task extends CI_Controller {
        function index()
        {
            $config    =    array(
                        "protocol"     =>     "sendmail",
                        "mailpath"     =>    "/usr/sbin/sendmail",
                        "charset"    =>    "iso-8859-1",
                        "wordwrap"    =>    TRUE
                        );
            $this->load->library('email', $config);
            $this->email->initialize();
            
            $this->email->from('[email protected]');
            $this->email->to('[email protected]');
            $this->email->subject('Code igniter Test');
            $this->email->message('Test Test Test');
            $this->email->send();
            
            echo $this->email->print_debugger();
        }
    }

Kindly help me to solve this issue..


Messages In This Thread
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-30-2011, 11:21 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-31-2011, 03:12 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-31-2011, 10:02 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 04:51 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 05:31 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 05:39 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 11:18 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 01:07 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 10:33 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 03:09 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 08:41 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:18 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:57 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:59 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 10:00 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:01 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:47 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:52 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 12:16 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 06:06 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 03:31 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 07:43 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 10:52 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-04-2011, 01:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB