0

我有一个问题,我想通过电子邮件使用 PHP 发送一个文件(Photoshop、.gif 等)文件。我将 HTML 文档中的数据发布到以下 PHP 文件。问题:我收到电子邮件,但文件已损坏。知道为什么这不起作用吗?

    $to = 'admin@example.com'; 
    $subject = 'Order';

    $name = strip_tags($_POST['name']);
    $email = strip_tags($_POST['email']);
    $plz = strip_tags($_POST['plz']);
    $city = strip_tags($_POST['city']);
    $street = strip_tags($_POST['street']);
    $nr = strip_tags($_POST['nr']);

    $plzdelivery = strip_tags($_POST['plz-delivery']);
    $citydelivery = strip_tags($_POST['city-delivery']);
    $streetdelivery = strip_tags($_POST['street-delivery']);
    $nrdelivery = strip_tags($_POST['nr-delivery']);

    $buttonsize = strip_tags($_POST['button-size']);
    $count = strip_tags($_POST['count']);

    $message = "Name: ".$name." Email: ".$email." Plz: ".$plz." Stadt: ".$city." Strasse: ".$street." Hnr: ".$nr." Button: ".$buttonsize." Anzahl: ".$count;

    $type = $_FILES['file']['type'];
    $attachment = chunk_split(base64_encode(file_get_contents($_FILES['file']['tmp_name'])));
    $filename = $_FILES['file']['name'];

    $boundary =md5(date('r', time())); 

    $headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
    $headers .= "\r\nMIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"_1_$boundary\"";

    $message="This is a multi-part message in MIME format.
--_1_$boundary
Content-Type: multipart/alternative; boundary=\"_2_$boundary\"

--_2_$boundary
Content-Type: text/plain; charset=\"iso-8859-1\"
Content-Transfer-Encoding: 7bit

$message

--_2_$boundary--
--_1_$boundary
Content-Type: application/octet-stream; name=\"$filename\" 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment 

$attachment
--_1_$boundary--";

    mail($to, $subject, $message, $headers);
4

2 回答 2

0

您应该安装 pear Mail_Mime 包,它可以让您轻松附加文件。

http://pear.php.net/manual/en/package.mail.mail-mime.addattachment.php

于 2013-02-24T20:51:15.370 回答
0

简短的回答:甚至不要尝试。

PHP 的mail()功能在功能上是非常非常短的。如果您甚至考虑尝试使用它发送附件,那么您会遇到很多挫折和浪费时间。

我能给你的最好的答案是使用第三方库。有几个不错的。当其他人已经花了数年时间为你做这件事并把它做好时,为什么还要浪费你几周的时间来写一些不够好的东西。

我的建议是phpMailer,但也存在其他几个。

于 2013-02-24T20:56:30.610 回答