如何生成excel文件并将其作为附件发送到CakePHP2.0中

时间:2015-04-28 04:29:02

标签: excel cakephp-2.0

嘿我正在尝试在cakephp中创建一个excel文件。我有一个像url / fetchreport / 2015-02-1这样的工作下载链接我可以从这个网址下载excel。有什么方法可以使用这个URL并将下载的excel作为附件发送到电子邮件中。

1 个答案:

答案 0 :(得分:0)

您可以使用此代码在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';