Posts

Showing posts with the label attachment

How To Ship E-Mail Alongside An Attachment Inwards Codeigniter?

You involve to utilization next ii CodeIgniter's robust classes. 1. Email Library : CodeIgniter's robust Email Class library to brand sending e-mail real elementary too easy. 2. Path Helper : The Path Helper file contains functions that permits you lot to piece of occupation amongst file paths on the server. Here is a basic event demonstrating how you lot mightiness shipping e-mail amongst attachment. Note: This event assumes you lot are sending the e-mail from 1 of your controllers. $this->load->library('email'); $this->load->helper('path'); $this->email->from('your@example.com', 'Your Name'); $this->email->to('someone@example.com'); $this->email->cc('another@another-example.com'); $this->email->bcc('them@their-example.com'); $this->email->subject('Email Test'); $this->email->message('Testing the e-mail class.'); /* This share volition furnish ...