蛋糕电子邮件出错

时间:2013-02-28 12:59:39

标签: cakephp-2.0 cakephp-2.1 cakephp-2.2 cakephp-2.3

在我的Controller文件中,我编写了以下用于将图像附加到邮件的代码,但它给出了错误

$email->attachments(array('/localhost/projname/app/webroot/img/file.png'));

它显示错误,例如找不到文件:“& quot

2 个答案:

答案 0 :(得分:3)

您可以使用IMAGES常量来获取images文件夹的文件路径:

$email->attachments(array(IMAGES.DS.'file.png'));

答案 1 :(得分:3)

最后我得到了附加图像的解决方案

$email->attachments(array (
                    array('file'=>ROOT.'/app/webroot/img/car.gif',
                          'mimetype'=>'image/png'
                         ),
                    ));