我正在使用 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();
每次我执行此代码段时,甚至邮件都在接收但没有附件。