一尘不染

简单的PHP形式:电子邮件附件(代码高尔夫)

php

想象一个用户想要在其网站上放置一个表单,该表单将允许网站访问者上传文件和一条简单消息,该消息将立即通过电子邮件发送(即,文件未存储在服务器上,或者如果文件已存储在服务器上)
(仅暂时)作为文件附件,并在邮件正文中添加注释。

最简单的方法是什么?

最简单的方面:

  • 尺寸(打码高尔夫)
  • 易于实施(理想情况下,全部集中在一个文件中,几乎不需要外部资源)
  • 不会因为混淆而混淆(尺寸折衷是可以的)
  • 自包含的示例(如果在没有表单发布的情况下调用,它将显示表单)

这几乎是相反的:如何从PHP获取电子邮件及其附件。在PHP中使用多个附件编译电子邮件几乎可以解决此问题,但实际上并没有显示代码。


阅读 334

收藏
2020-05-29

共1个答案

一尘不染

只是为了好玩,我以为我会把它搞砸。最终变得比我想象的要复杂,因为我没有完全了解边界部分的工作原理,最终我发现起点和终点“-”很重要,然后就消失了。

<?php
    if(isset($_POST['submit']))
    {
        //The form has been submitted, prep a nice thank you message
        $output = '<h1>Thanks for your file and message!</h1>';
        //Set the form flag to no display (cheap way!)
        $flags = 'style="display:none;"';

        //Deal with the email
        $to = 'me@example.com';
        $subject = 'a file for you';

        $message = strip_tags($_POST['message']);
        $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);
    }
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>MailFile</title>
</head>

<body>

<?php echo $output; ?>

<form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" <?php echo $flags;?>>
<p><label for="message">Message</label> <textarea name="message" id="message" cols="20" rows="8"></textarea></p>
<p><label for="file">File</label> <input type="file" name="file" id="file"></p>
<p><input type="submit" name="submit" id="submit" value="send"></p>
</form>
</body>
</html>

真的很准,而且显然使用内联CSS隐藏表单有点便宜,您几乎可以肯定希望向用户提供更多反馈!此外,我可能会花更多的时间来确定文件的实际Content-Type,而不是欺骗和使用application / octet-stream,但是那部分还是很有趣的。

2020-05-29