简单的 PHP 表单:电子邮件附件(代码高尔夫)
Posted
技术标签:
【中文标题】简单的 PHP 表单:电子邮件附件(代码高尔夫)【英文标题】:Simple PHP form: Attachment to email (code golf) 【发布时间】:2010-10-23 23:59:19 【问题描述】:想象一个用户想在他们的网站上放置一个表单,允许网站访问者上传一个文件和一条简单的消息,这些消息将立即通过电子邮件发送(即文件没有存储在服务器上,或者如果它只是暂时的)作为文件附件,在邮件正文中带有注释。
在http://a2zsollution.com/php-secure-e-mail/查看更多详情
最简单的方法是什么?
最简单的方面:
尺寸(代码高尔夫) 易于实施(最好在一个文件中,几乎不需要外部资源) 不为混淆而混淆(权衡大小是好的) 自包含示例(如果在没有表单帖子的情况下调用,它会显示表单)这与How to get email and their attachments from PHP 几乎相反。它几乎可以在Compiling email with multiple attachments in 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 来隐藏表单有点便宜,而且您几乎肯定希望向用户提供更多反馈!另外,我可能会花更多的时间来确定文件的实际 Content-Type 是什么,而不是作弊和使用 application/octet-stream,但这部分同样有趣。
【讨论】:
在我看来,这是迄今为止最好的回应,因为您是唯一提供完整代码(问题特别要求)的人。 +1。 高尔夫的边界可以使用 md5,但对于生产,您应该仔细检查边界是否出现在编码附件中。有些编码更安全,例如 Base64 永远不会意外匹配包含_
的边界
有没有办法附加多个文件?
@MalphasWats 如果我们想发送图片,那么该怎么做
很好,除了我们创建的整个字符串之外的所有字符串都按原样显示在邮件中...有没有办法让我的用户上传的文件实际附加到邮件而不是在其中编码? NVM:我在这里找到它sanwebe.com/2011/01/send-php-mail-with-attachment【参考方案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 之前将其上传到某个地方以执行它想要的操作。默认情况下,这将是您系统的临时文件夹,除非它在配置文件中进行了更改。
【讨论】:
【参考方案3】:本文“How to create PHP based email form with file attachment”提供了如何实现您的要求的分步说明。
引用:
本文向您展示了如何创建一个 基于 PHP 的电子邮件表单,支持 文件附件。文章还将 向您展示如何验证类型和 上传文件的大小。
它由以下步骤组成:
带有文件上传框的 HTML 表单 在 PHP 中获取上传的文件 脚本 验证大小和扩展 上传的文件 复制上传的文件 发送电子邮件整个示例代码可以下载here
【讨论】:
【参考方案4】:为了将文件作为附件添加到电子邮件中,它将需要短暂地存储在服务器上。不过,将它放在 tmp 位置然后在完成后将其删除是很简单的。
对于电子邮件,Zend Mail 有一个非常易于使用的界面来处理电子邮件附件。我们在安装了整个 Zend 框架的情况下运行,但我很确定您可以只安装 Zend_Mail 库,而不需要任何其他依赖模块。
使用 Zend_Mail,发送带有附件的电子邮件非常简单:
$mail = new Zend_Mail();
$mail->setSubject("My Email with Attachment");
$mail->addTo("foo@bar.baz");
$mail->setBodyText("Look at the attachment");
$attachment = $mail->createAttachment(file_get_contents('/path/to/file'));
$mail->send();
如果您正在寻找一个文件包来完成整个表单/电子邮件/附件的工作,我还没有看到。但是各个组件肯定是可用的并且易于组装。整个过程中最棘手的是电子邮件附件,上面的建议非常简单。
【讨论】:
【参考方案5】:我还没有测试过这个的电子邮件部分(我的测试箱不发送电子邮件),但我认为它会工作。
<?php
if ($_POST)
$s = md5(rand());
mail('email@example.com', 'attachment', "--$s
$_POST['m']
--$s
Content-Type: application/octet-stream; name=\"f\"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
".chunk_split(base64_encode(join(file($_FILES['f']['tmp_name']))))."
--$s--", "MIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"$s\"");
exit;
?>
<form method="post" enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<textarea name="m"></textarea><br>
<input type="file" name="f"/><br>
<input type="submit">
</form>
【讨论】:
我喜欢你的小而简单的,希望我能给你们两个赏金。【参考方案6】:PEAR::Mail_Mime?当然,(min) 2 个文件的 PEAR 依赖项(如果您编辑它以删除 pear 依赖项,则只是 mail_mime 本身),但它运行良好。此外,大多数服务器都在一定程度上安装了 PEAR,在最好的情况下,它们安装了 Pear/Mail 和 Pear/Mail_Mime。对于大多数提供相同功能的其他库来说,这是无法做到的。
您也可以考虑查看 PHP 的 IMAP extension。它有点复杂,需要更多设置(默认情况下未启用或安装),但必须更有效地编译和发送消息到支持 IMAP 的服务器。
【讨论】:
以上是关于简单的 PHP 表单:电子邮件附件(代码高尔夫)的主要内容,如果未能解决你的问题,请参考以下文章