Welcome Guest, Not a member yet? Register   Sign In
can u tell how emailactually send in codeigniter
#1

[eluser]Unknown[/eluser]
hey
i am a beginner in codeigniter. i have write a code like
$this->load->library('email');

$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;

$this->email->initialize($config);



$this->email->from('mostafa_bangla@yahoo.com', 'Mostafa');
$this->email->to('[email protected]');


$this->email->subject('Email Test');
$this->email->message('Testing the email class.');

$this->email->send();

echo $this->email->print_debugger();

this.It gives me a message that it has send the mail but i don't have the email message in my mail address. How can i get the email actually?
#2

[eluser]Unknown[/eluser]
[quote author="Ekramul Mostafa" date="1234789179"]hey
i am a beginner in codeigniter. i have write a code like
$this->load->library('email');

Code:
$config['protocol'] = 'sendmail';
            $config['mailpath'] = '/usr/sbin/sendmail';
            $config['charset'] = 'iso-8859-1';
            $config['wordwrap'] = TRUE;

            $this->email->initialize($config);
            
            

            $this->email->from('[email protected]', 'Mostafa');
            $this->email->to('[email protected]');
            

            $this->email->subject('Email Test');
            $this->email->message('Testing the email class.');

            $this->email->send();

            echo $this->email->print_debugger();
this.It gives me a message that it has send the mail but i don't have the email message in my mail address. How can i get the email actually?[/quote]
#3

[eluser]benoa[/eluser]
If you're developping locally, you can have such troubles. Have a look at this -> http://roshanbh.com.np/2007/12/sending-e...nment.html




Theme © iAndrew 2016 - Forum software by © MyBB