Codeigniterは添付のメールを送信することを実現します。


本明細書の例は、Codeigniterが添付ファイルを送信するメールを実現する方法を説明する。皆さんの参考にしてください。具体的な分析は以下の通りです。
atech()メソッドは添付ファイルを持ってメールを送ることを許可します。以下はプレゼンテーションコードです。
$this->load->library('email');
$this->email->from('[email protected]', 'W3M');
$this->email->subject('Email Test with attachment');
$this->email->message('Testing the email class IN CODEIGNITER with attachment.');
$this->email->attach('/path/to/attachment1.jpg');
$this->email->send();
ここで述べたいのですが、Codeigniterに基づくphpプログラムの設計に役立ちます。