メールを送信するためのテストライブラリの作成に問題があります。これは私のコードです:
class My_email {
public function my_send_mail() {
$CI =& get_instance();
$CI->load->library('email');
$CI->email->from('xxx@xxx.com', 'Sender name');
$CI->email->to('yyy@yyy.com');
$CI->email->subject('Test');
$CI->email->message('Testing');
return $CI->email->send();
}
}
エラーが発生します:
Call to undefined method My_email::from()