cakephp 2.0 - How do I generate excel file and send it as attachment in CakePHP2.0 -


hey trying create excel file in cakephp . have working download link url/fetchreport/2015-02-1 able download excel url . there way can use url , send downloaded excel in email attached file .

you can use code attaching file in email in cakephp.

$this->email->filepaths  = array('/path/to/your/file/'); $this->email->attachments= array('file.xls'); $this->email->to         = 'example@example.com'; $this->email->subject    = 'xyz'; $this->email->replyto    = 'client@mail'; $this->email->from       = 'anything@mail'; $this->email->sendas     = 'html';