Symfony无法打开文件进行阅读

时间:2011-03-23 12:42:42

标签: linux file symfony1

我正在使用symfony构建一个Web应用程序,我必须上传文件然后通过邮件发送。文件上传正确,并具有-rw-rw-rw-权限。问题在于,当我尝试发送邮件时,应用程序会崩溃。

Symfony 1.4。 Linux ubuntu服务器。日志说:无法打开文件进行阅读

$message = sfContext::getInstance()->getMailer()
                ->compose(sfConfig::get('app_default_email'), $mailingList, 'New request from '.$expert_request->get('company'), $content)->setContentType('text/html')
                ->attach(Swift_Attachment::fromPath(sfConfig::get('sf_upload_dir').'/documents/'.$expert_request->get('uploaded_file')));

sfContext::getInstance()->getMailer()->send($message);

谢谢!

0 个答案:

没有答案