PHP群发邮件脚本在outlook中显示额外的文件

时间:2011-08-18 21:26:13

标签: php email outlook

我使用PHP脚本发送带有多个附件的电子邮件,它适用于gmail,但在Microsoft Outlook中我也看到空白文件ATT00010.txt(随机数。)作为附件。当我从outlook发送带有多个附件的电子邮件时,它也没有显示这样的文件。

我回复了电子邮件脚本的输出,代码中没有这样的文件。有人能告诉我如何从outlook中删除此文件吗?

电子邮件脚本如下。

// array with filenames to be sent as attachment
$files = array("file_1.ext","file_2.ext","file_3.ext",......);

// email fields: to, from, subject, and so on
$to = "mail@mail.com";
$from = "mail@mail.com"; 
$subject ="My subject"; 
$message = "My message";
$headers = "From: $from";

// boundary 
$semi_rand = md5(time()); 
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; 

// headers for attachment 
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\""; 

// multipart boundary 
$message = "This is a multi-part message in MIME format.\n\n" . "--{$mime_boundary}\n" . "Content-Type: text/plain; charset=\"iso-8859-1\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $message . "\n\n"; 
$message .= "--{$mime_boundary}\n";

// preparing attachments
for($x=0;$x<count($files);$x++){
    $file = fopen($files[$x],"rb");
    $data = fread($file,filesize($files[$x]));
    fclose($file);
    $data = chunk_split(base64_encode($data));
    $message .= "Content-Type: {\"application/octet-stream\"};\n" . " name=\"$files[$x]\"\n" . 
    "Content-Disposition: attachment;\n" . " filename=\"$files[$x]\"\n" . 
    "Content-Transfer-Encoding: base64\n\n" . $data . "\n\n";
    $message .= "--{$mime_boundary}\n";
}

// send

$ok = @mail($to, $subject, $message, $headers); 
if ($ok) { 
    echo "<p>mail sent to $to!</p>"; 
} else { 
    echo "<p>mail could not be sent!</p>"; 
} 

3 个答案:

答案 0 :(得分:0)

multipart/*消息中的最后边界线必须在末尾添加-- ,除了所有其他边界之外线条有。消费者可以使用它来识别消息的结束。

显然,Outlook将缺少正确的结尾视为消息已被截断的指示,然后尽力显示它所接收的内容。

答案 1 :(得分:0)

如果你想要一些不那么痛苦的事情并使用附件,请试试Swift Mailer。 (swiftmailer.org)我一直在我的项目中使用它,效果很好。

以下是一个例子:

$message = Swift_Message::newInstance()
  ->setSubject('Webinar Registration')
  ->setFrom(array('replyto@example.org' => 'From Name'))
  ->setTo(array('destination@example.org'))
  ->setBody($MESSAGE_TEXT)
  ;

$message->attach(Swift_Attachment::fromPath('SOME_FILE_PATH'));
$transport = Swift_SmtpTransport::newInstance('127.0.0.1', 25);
$mailer = Swift_Mailer::newInstance($transport);
$result = $mailer->send($message);

只是我的两分钱。

否则,我会提到其他人已经打败了我 - 检查边界。

答案 2 :(得分:-1)

它是我的第二个帐户,我实际上找到了解决方案,并且根本不需要任何库或类,虽然我可能将其转换为类并添加一些东西,它总是更好地完全理解过程而不仅仅是来自,文件等字段。

解决方案很简单,只需用

替换最后一部分
    if ($x == count($files)-1) 
        $message .= "--{$mime_boundary}--\r\n";
    else
        $message .= "--{$mime_boundary}\n";

\ r是没有必要的

如果你只是把它 - 它将在循环IF检查中多次使用它,如果这是最后一个循环。