PHP 获取电子邮件附件
Posted
技术标签:
【中文标题】PHP 获取电子邮件附件【英文标题】:Php Get Email Attachment 【发布时间】:2012-08-23 20:40:24 【问题描述】:我有一个表单,我有一个输入文件来放置附件。碰巧我拥有的所有数据都以我想通过电子邮件发送的形式发送。但是,在我这样做之前,我将所有输入的数据重定向到另一个 php 页面并使用 get 接收它。
所以我的第一个问题是,如何通过get获取其他php页面中的附件内容?
在那之后,在我验证了新 php 页面中的所有数据之后,我假装通过电子邮件发送它。我打算使用这段代码:
//define the receiver of the email
$to = 'myemail@something.com';
//define the subject of the email
$subject = 'Test email with attachment';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents('attachment.zip')));
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>
--PHP-alt-<?php echo $random_hash; ?>--
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: application/zip; name="attachment.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
<?php echo $attachment; ?>
--PHP-mixed-<?php echo $random_hash; ?>--
<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
但我有一个疑问,哪里有“attachment.zip”我应该放什么?将在这个新的 php 页面上获取附件数据的变量?
提前致谢!
忘记上面的部分:
这是我在表单上的声明和提交按钮:
<form id="formElem" name="formElem" enctype="multipart/form-data" action="" method="post">
<button name='enviar_candidatura' id='enviar_candidatura' value='enviar_candidatura' onclick='return false;' type='submit'>
当我点击上面的按钮时,我输入了以下 jquery 函数:
$('#enviar_candidatura').bind('click',function()
var conta_Duplicates;
conta_Duplicates=dadosImportantes();
//alert("Deu");
var preenchimentoForm=true;
//alert("Contasssss"+conta1);
//var eventos=$countEventos;
var eventos=conta_Duplicates[2];
//alert("Wiggins"+eventos);
//var empregos=$countEmpregos;
var empregos=conta_Duplicates[1];
//var cursos=$countCursos;
var cursos=conta_Duplicates[0];
//alert($countEmpregos);
if($('#formElem').data('errors'))
preenchimentoForm=false;
dadosFormularios(form, preenchimentoForm, cursos, empregos, eventos);
return false;
else
dadosFormularios(form, preenchimentoForm, cursos, empregos, eventos);
在这个函数中我遇到了困难,因为如果我是对的,我应该在这里为表单元素分配一个 var,以便我可以将她传递给函数“dadosFormularios”。
一旦进入dadosFormularios(...),它就在那里我想调用
form.action = 'index.php?pagina=candidaturasB&'+ qstringA;
重定向到我将发送带有附件的电子邮件的 php 页面。
希望我对外语中的一些变量表示清楚和抱歉,希望这不是问题。
【问题讨论】:
你从哪里得到文件?上传? 这是我拥有并在其中输入 type="file" 的表单。用户从他的个人电脑中选择他想要发送的文件。所以我在代码中假装是在另一个 php 页面上接收该信息,以将用户指定的文件发送到电子邮件。这可能吗? 你可以写JSFiddle? 【参考方案1】:您填写的表格需要有enctype="multipart/form-data"
,并且需要有method="post"
才能上传。
像这样:
<form method="post" action="" enctype="multipart/form-data" id="myform" onsubmit="return checkForm(this)";>
<input type="file" name="filename" />
// ...........
</form>
在您发送邮件之后,您可以使用$_FILES['filename']['tmp_name']
获取文件,注意filename
必须与输入的名称相同:
$attachment = chunk_split(base64_encode(file_get_contents($_FILES['filename']['tmp_name'])));
函数
<script type="text/javascript">
function checkForm(form)
// process fieds
return checkNextFunction(form);
function checkNextFunction(form)
form.action = 'myurl.php';
return true;
</script>
检查JSFiddle。
【讨论】:
当我将数据从第一个 php 页面发送到另一个我将发送电子邮件的地方时,我不需要向 url 添加任何内容?就用这个? $attachment = chunk_split(base64_encode(file_get_contents($_FILES['filename']['tmp_name']))); 但我有这样的动作:action="" 因为我没有新的 php 页面 Mihai 的 url。当我单击表单的提交按钮时,在我重定向到第二个 php 页面之前,我会通过一个 javascript 函数,该函数在单击提交按钮时调用,该函数将我重定向到新页面。这会是个问题吗? 你不能这样做,你不能从 javascript 重定向文件上传。必须像我告诉你的那样完成。 但是因为其他原因我需要通过我提到的功能,这就是问题所在:/ 那你做不到。对不起。那个函数是做什么的,也许我们可以修改它?以上是关于PHP 获取电子邮件附件的主要内容,如果未能解决你的问题,请参考以下文章