Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
CodeIgniter

Email Sending in CodeIgniter

Send emails from CodeIgniter using the Email library for notifications and forms.

Email Sending in CodeIgniter — a practical guide to CodeIgniter email with clear examples you can reuse in real projects.

CodeIgniter Tutorial Series (49/74). Prefer one article? Read the complete CodeIgniter tutorial.

Short description

Configure from-address and mail protocol, then use the Email service to send messages.

Send email

$email = ConfigServices::email();
$email->setTo('user@example.com');
$email->setSubject('Welcome');
$email->setMessage('Thanks for joining!');
$email->send();

Leave a reply

Your email address will not be published. Required fields are marked *