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

想象一下,一个用户想要在他们的网站上放置一个表单,该表单将允许网站访问者上传一个文件和一个简单的消息,该消息将立即通过电子邮件发送(即,该文件不存储在服务器上,或者如果它只是暂时的)作为文件附件,并在消息正文中带有注释。

http://a2zsollution.com/php-secure-e-mail/ 查看更多详细信息

实现此目的的最简单方法是什么?

最简单的方面是:

  • 大小(代码高尔夫)
  • 易于实施(理想情况下,全部在一个文件中,需要很少或不需要外部资源)
  • 不为了混淆而进行混淆(大小权衡是可以的)
  • 自包含的示例(如果在没有表单帖子的情况下调用,则显示表单)

这几乎是相反的:如何从PHP获取电子邮件及其附件。它几乎可以在PHP中编译带有多个附件的电子邮件中得到回答,但它实际上并没有显示代码。


答案 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来隐藏表单有点便宜,你几乎肯定会想要给用户更多的反馈!另外,我可能会花更多的时间弄清楚文件的实际内容类型是什么,而不是作弊和使用应用程序/八位字节流,但这部分同样有趣。


答案 2

http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php#attachment 的组合

与php上传文件的例子将工作。在上传文件示例中,与其使用move_uploaded_file将其从临时文件夹中移出,不如将其打开:

$attachment = chunk_split(base64_encode(file_get_contents($tmp_file))); 

哪里$tmp_file = $_FILES['userfile']['tmp_name'];

并将其作为附件发送,就像示例的其余部分一样。

所有在一个文件/独立:

<? if(isset($_POST['submit'])){
//process and email
}else{
//display form
}
?>

我认为这是一个快速练习,根据上述两个可用示例获得所需的工作。

附言:在Apache将其传递给PHP以使用它来做它想要做的事情之前,它需要上传到某个地方。默认情况下,这将是系统的临时文件夹,除非在配置文件中对其进行了更改。


推荐