【发布时间】:2013-01-04 19:31:09
【问题描述】:
我正在使用 CakePHP,需要发送带有 .xls 文件附件的邮件。
虽然我尝试了很多但没有成功。
注意 - 仅供参考,邮件中仅附有 PDF 文件。
请在下面找到我的代码 -
$this->Email->to = 'email address';
$this->Email->from = 'From email address';
$this->Email->subject = 'Subject';
$this->Email->template = 'template name';
$Path = TMP;
$fileName = 'testfile.xls';
$this->Email->filePaths = array($Path);
$this->Email->attachments = array($fileName);
$this->Email->send();
每次我执行这段代码sn-p时,连邮件都在接收,但没有附件。
【问题讨论】:
-
您使用的是哪个版本的蛋糕?看起来像 1.x 语法
标签: excel email cakephp attachment xls