December 2013
Intermediate to advanced
306 pages
6h 26m
English
It's always useful to be able to send e-mails and CodeIgniter comes with an excellent library for sending e-mails. There are a few recipes in this chapter, which deal with sending e-mails. However, this is the basic Hello World type example that is very simple.
A simple way to send plain e-mails using CodeIgniter Email is as follows:
email.php at path/to/codeigniter/application/controllers/.email.php:<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Email extends CI_Controller { function __construct() { parent::__construct(); $this->load->helper('url'); $this->load->library('email'); } public function ...Read now
Unlock full access