来自外部来源的电子邮件附件不起作用



我最近在我们的网站上创建了一个页面,用户可以上传图片并通过电子邮件发送到专门为保存上传的文档而设置的电子邮件地址。

我已经自己测试过了,它是有效的,附件如预期的那样到达gmail。

然而,每当有人从外部使用此功能时,电子邮件中的附件是不可用的,或者当我们试图打开它时无法加载。

代码分为两个文件,一个控制器和一个助手。下面是代码(为了节省一些空间,我删除了所有的错误检查,但在实际的代码中,它们仍然在适当的位置,不拾取任何错误):

控制器

$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;
}

有人能看到任何可能导致这个问题的东西吗?或者根据我对设置的解释,想想它可能是什么?

所以问题最终出在文件大小上。我的错误是没有发布$_FILES变量。

我稍后看到它,变量error = 1,这意味着文件的大小大于php.ini

中的max_upload_filesize所允许的大小。

相关内容

  • 没有找到相关文章

最新更新