December 2013
Intermediate to advanced
306 pages
6h 26m
English
There might be times when you wish to display formatted e-mails rather than just plain text, so you may wish to include images, text formatting, and URLs in the body of your e-mail. HTML e-mails will allow you to do this and CodeIgniter Email library can easily be set to do just that.
HTML e-mails can be sent by executing the following steps:
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 ...Read now
Unlock full access