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.
The to a higher house e-mail sending event is used inward CodeIgniter User Guide Version 2.1.4. Sumber http://developer-paradize.blogspot.com
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 a server path without symbolic links or relative directory structures. */ $path = set_realpath('uploads/pdf/'); $this->email->attach($path . 'yourfile.pdf'); /* Enables you lot to shipping an attachment */ $this->email->send(); echo $this->email->print_debugger();
The to a higher house e-mail sending event is used inward CodeIgniter User Guide Version 2.1.4. Sumber http://developer-paradize.blogspot.com
Comments
Post a Comment