This article describes the method of Codeigniter to send mail with attachments. Share it for your reference. The specific analysis is as follows:
The attach() method allows you to bring attachments when sending emails. The following is the demo code
Copy the codeThe code is as follows:
$this->load->library('email');
$this->email->from('w3@', 'W3M');
$this->email->subject('Email Test with attachment');
$this->email->message('Testing the email class IN CODEIGNITER with attachment.');
$this->email->attach('/path/to/');
$this->email->send();
$this->email->from('w3@', 'W3M');
$this->email->subject('Email Test with attachment');
$this->email->message('Testing the email class IN CODEIGNITER with attachment.');
$this->email->attach('/path/to/');
$this->email->send();
I hope that the description in this article will be helpful to everyone's PHP programming based on Codeigniter.