我最近在我们的网站上创建了一个页面,用户可以上传图像并通过电子邮件将其发送到专门设置的电子邮件地址,以保留上传的文档。
我自己测试了这个并且它有效,附件按照预期到达gmail。
但是,当我们尝试打开电子邮件时,无论何时来自外部的人使用此功能,电子邮件中的附件都将无法使用,或者无法加载。
代码分为2个文件,一个控制器和一个帮助程序。这是代码(为了节省一些空间我删除了所有错误检查,但在实际代码中它们仍然存在并且没有发现任何错误):
控制器
$helper = [GET HELPER];
/** Upload the file to a temp location so that we can attach it to an email */
$uploader = new Varien_File_Uploader('filename');
$uploader->setAllowedExtensions(array(
'image/jpeg',
'image/jpg',
'image/png',
'application/pdf'
))
->setAllowRenameFiles(true)
->setFilesDispersion(false);
$path = $helper->getFileStorageLocation(); // Will store files in /tmp
if (!is_dir($path))
{
mkdir($path, 0775, true);
}
$uploader->save($path, $_FILES['filename']['name']);
$result = $helper->sendMail($_FILES['filename']['name']);
if ($result)
{
$uploadSuccess = true;
/** Remove the temp file */
unlink($path . DS . $_FILES['filename']['name']);
}
辅助
/** Declare variables */
$order = Mage::getModel('sales/order')->load($orderId);
$file_incremented_id = $order->getIncrementId();
$copyTo = $this->getCopyTo();
$copyFrom = $this->getCopyFrom();
$subject = 'proof of upload for ' . $file_incremented_id;
$copyTo = explode(',', $copyTo);
$body = '<span>Please see attachment</span>';
$file = $this->getFileStorageLocation() . DS . $filename; // function receives filename from whatever is calling it
$attachment = file_get_contents($file);
$extension = pathinfo($file, PATHINFO_EXTENSION);
if (!$copyTo)
{
return false;
}
$mail = Mage::getModel('core/email_template');
$mail->setSenderName('Uploader');
$mail->setSenderEmail($copyFrom);
$mail->setTemplateSubject($subject);
$mail->setTemplateText($body);
$mail->getMail()->createAttachment(
$attachement,
Zend_Mime::TYPE_OCTETSTREAM,
Zend_Mime::DISPOSITION_ATTACHMENT,
Zend_Mime::ENCODING_BASE64,
$file_incremented_id . '.' . $extension // Set order number as file name
);
try
{
$mail->send($copyTo);
return true;
}
catch (Exception $e)
{
return false;
}
任何人都可以看到可能导致问题的任何内容,或根据我对设置的解释来考虑它可能是什么?
答案 0 :(得分:0)
所以问题最终是文件大小。我没有发布$ _FILES变量。
我稍后看到它并且变量的错误= 1,这意味着文件的大小大于php.ini中max_upload_filesize允许的大小