Welcome Guest, Not a member yet? Register   Sign In
Sending emails using CI
#2

[eluser]khagendra[/eluser]
1. Load email library in ur controller.
Code:
$this->load->library('email');

2. use the following codes to send an email.
Code:
$this->email->from('sender email', 'Sender Name');   // $this->email->from('[email protected]', 'Your Name');
$this->email->to('receiver email');   //$this->email->to('[email protected]');

$this->email->subject('Subject of email');
$this->email->message('The message for the email.');

$this->email->send();

This will help to send an email.


Messages In This Thread
Sending emails using CI - by El Forum - 10-30-2009, 02:37 AM
Sending emails using CI - by El Forum - 10-30-2009, 03:06 AM
Sending emails using CI - by El Forum - 10-30-2009, 04:15 AM
Sending emails using CI - by El Forum - 10-30-2009, 04:45 AM
Sending emails using CI - by El Forum - 10-30-2009, 04:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB