Send mail using codeIgniter and smtp
Sending email is not only simple, but you can configure it on the fly or set your preferences in a config file.In the past, I have used the email helper extensively in combination with sendmail, however for a new project I was required to route e-mail through a third-party SMTP server, in this case Gmail. I used the following code:
function sendMail()
{
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
...
How to send mail using CodeIgniter.

Send E-mail using codeIgniter.
Sending email is not only simple, but you can configure it on the fly or set your preferences in a config file.
CodeIgniter's Email Class supports the following features:
Multiple Protocols:
Mail, Sendmail, and SMTP
Multiple recipients
CC and BCCs
HTML or Plaintext email
Attachments
Word wrapping
Priorities
BCC Batch Mode, enabling large email lists to be broken...
CodeIgniter From Scratch : CRUD
Basic CRUD With Codeigniter
If you are totally new to the codeigniter experience and you can't still understand the way that you can create a CRUD, this codeigniter CRUD tutorial is just for you.We'll review how to easily create, read, update, and delete records using CI's active-records class.
So, We will do it this process in 4 stage
Stage 1 : In this stage we will setup a directory and database.
Stage 2 : In this stage we will Select all database from the database and show into the view.
Stage 3 : In this stage we...
How to Setup CodeIgniter on local xampp server with screenshots

Codelgniter install Step By Step Tutorial for beginners:
What is CodeIgniter?
CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you're a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you're tired of ponderously large and thoroughly undocumented frameworks, then...
Powered by Blogger.