在我的Controller文件中,我编写了以下用于将图像附加到邮件的代码,但它给出了错误
$email->attachments(array('/localhost/projname/app/webroot/img/file.png'));
它显示错误,例如找不到文件:“& quot
答案 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'
),
));