0% found this document useful (0 votes)
30 views1 page

Example: Application/views/myform - Php. This Page Will Display Form Where User Can Submit His

CodeIgniter provides several features to simplify sending emails, including multiple protocols, encryption options, attachments, and debugging tools. Validation is important when building web applications to ensure received data is proper and valid for storage or processing, and CodeIgniter makes the validation process easy with examples like checking for empty form submissions.

Uploaded by

prabhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Example: Application/views/myform - Php. This Page Will Display Form Where User Can Submit His

CodeIgniter provides several features to simplify sending emails, including multiple protocols, encryption options, attachments, and debugging tools. Validation is important when building web applications to ensure received data is proper and valid for storage or processing, and CodeIgniter makes the validation process easy with examples like checking for empty form submissions.

Uploaded by

prabhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

}

public function send_mail()


{
$from_email = "[email protected]";
Validation is an important process while building web application. It ensures that the data
that we are getting is proper and valid to store or process. CodeIgniter has made this task
very easy. Let us understand this process with a simple example.

Example
Create a view file myform.php and save the below code it in
application/views/myform.php. This page will display form where user can submit his
name and we will validate this page to ensure that it should not be empty while submittin
Multiple recipients
CC and BCCs
HTML or Plaintext email
$this->load->helper('form');
$this->load->view('email_form');
$to_email = $this->input->post('email');
//Load email library
Email class has the following functions to simplify the job of sending emails e PowerPoint

Presentation
$this->load->library('email');
$this->email->from($from_email, 'Your Name');
$this->email->to($to_email); New Microsoft OfficSending email in CodeIgniter is much
easier. You also configure the preferences regarding email in CodeIgniter. CodeIgniter
provides following features for sending emails:
Multiple Protocols: Mail, Sendmail, and SMTP
TLS and SSL Encryption for SMTP
Attachments
Word wrapping
Priorities
BCC Batch Mode, enabling large email lists to be broken into small BCC batches.
Email Debugging tools
Validation is an important process while building web application. It ensures that the data

Example

}
public function send_mail()
{
$from_email = "[email protected]";
that we are getting is proper and valid to store or process. CodeIgniter has made this task
very easy. Let us understand this process with a simple example.

You might also like