I am using PHPMailer and codeigniter
https://github.com/ivantcholakov/codeigniter-phpmailer to send mail with attach file but I got error my code is
$this->load->library('email');
$result = $this->email
->from('xxxx@gmail.com',"xxx xxx")
->reply_to('xxx@xxx.com') // Optional, an account where a human being reads.
->to('xxx@xxx.com')
->subject($subject)
->message($body)
->AddAttachment('/var/www/html/phase2.png', 'test.png')
->send();
Fatal error: Call to undefined method MY_Email::AddAttachment()