These days, almost every PHP framework supports a well developed email management library. CodeIgniter is no different as it has a great email sending class that ensures that CodeIgniter projects could send emails without difficulty. In this article, I will describe how to send emails in a CodeIgniter application using SMTP. I will use the well known and maintained email sending class.
// loading library of email
$this->load->library(’email’);
The next step is to setup the required fields for the custom email. these fields could be setup through several functions including: from() function takes two parameters – the email address of the sender and the name. to()
function takes the email address of the recipient. Next two functions are subject()
and message()
that round up the requirements for sending emails in CodeIgniter. Here is how these functions are used in the code:
$this->email->from(’email@example.com’, ‘Identification’);
$this->email->to(’emailto@example.com’);
$this->email->subject(‘Send Email Codeigniter’);
$this->email->message(‘The email send using codeigniter library’);
Once these functions are filled, the final step is to send the email by using the send()
function.
$this->email->send();
Create the Controller
Create a controller file Sendingemail.php and save it in the application/controller/. Add the following code to this file:
class Sendingemail extends CI_Controller {
function __construct() {
$load->library('session');
$this->load->helper('form');
}
public function index() {
$this->load->helper('form');
$this->load->view('contact_email_form');
}
public function send_mail() {
$from_email = 'email@example.com';
$to_email = $this->input->post('email');
//Load email library
$this->load->library('email');
$this->email->from($from_email, 'Identification');
$this->email->to($to_email);
$this->email->subject('Send Email Codeigniter');
$this->email->message('The email send using codeigniter library');
//Send mail
if($this->email->send())
$this->session->set_flashdata("email_sent","Congragulation Email Send Successfully.");
else
$this->session->set_flashdata("email_sent","You have encountered an error");
$this->load->view('contact_email_form');
}
}
Create the View
Create a view file called contact_email_form.php and save it in
<?php
echo $this--->session->flashdata('email_sent');
echo form_open('/Sendingemail_Controller/send_mail');
?>
<input type="email" name="email" required=""><br>
<input type="submit" value="SEND MAIL"><br>
<?php
echo form_close();
?>
Make the changes in the routes.php file in application/config/routes.php and add the following line at the end of the file:
$route['email'] = 'Sendingemail';
Access the Email Application
Finally, Hit the following URL to access the application:
http://your-domain.com/index.php/email
As mentioned earlier, CodeIgniter fully supports different email protocols including SMTP through simple configuration options.
As you could see from the following code snippet, selecting the email protocol is the matter of setting a single configuration variable. In this code snippet, I have set the $config[‘protocol’] to smtp for using SMTP protocol.
$load->library('email');
$config = array();
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'xxx';
$config['smtp_user'] = 'xxx';
$config['smtp_pass'] = 'xxx';
$config['smtp_port'] = 25;
$this->email->initialize($config);
$this->email->set_newline("\r\n");
Adding email functionality to CodeIgniter applications deployed on any Web Hosting for PHP is a simple matter of using the email library.. All you have to do is to set a few variables and the email is setup. If you need any help in sending email in your CodeIgniter applications, do leave a comment below and I will get back to you.
Share This News