I tried this code to attach a file in CI. This is working:
$this->load->library('email');
$this->email->from('me@mymail.com', 'vignesh');
$this->email->subject('Email Test with attachment');
$this->email->message('Testing the email class IN CODEIGNITER');
$this->email->attach('/path/to/attachment1.jpg');
$this->email->send();
But I want to attach a file from an external URL:
$this->email->attach('http://mydomain.in/path/to/attachment1.jpg');