how to send email with attachment file. for example I tried attaching the template
$arr['email']="Email send successfully";
$this->email->from("Info@.com","example@gmail.com");
$this->email->to(set_value("email"));
$this->email->subject("Registration completed");
$this->email->message("Your Registration Is Completed");
$this->email->send();
echo "<script> alert('Your Registration successfully');</script>";
}