我有一个表单,用户填写并提交。提交后,表单需要从输入中创建文档,将文档附加到带有mail()函数的电子邮件中,并通过电子邮件发送给我指定的人员。
目前我正在以这种方式创建doc文件:
HEADER("Content-Type: application/vnd.ms-word; name='word'");
HEADER("Content-type: application/octet-stream");
HEADER("Content-Disposition: attachment; filename=filename_here.doc");
HEADER("Cache-Control: must-revalidate, post-check=0, pre-check=0");
HEADER("Pragma: no-cache");
HEADER("Expires: 0");
ECHO $header."\n".$body;
EXIT;
显然这会输出文件。我想将它附加到电子邮件,因为我不希望用户获取文档。根据具体情况,用户将被重定向到确认或错误页面。
谢谢!
--------------编辑-----------------
我的脚本现在发送带有附件的电子邮件。但是,附件的尺寸只有3k。这是我用来附加数据和发送电子邮件的脚本。它与用户提供文件时使用的脚本相同。我改变了脚本,从文件中读取数据,直接将“身体”改为“身体”。
$headers = "From: fromperson@email.com";
// Generate a boundary string
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
// Add the headers for a file attachment
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
// Add a multipart boundary above the plain message
$message = "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type: text/plain; charset=\"iso-8859-1\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$content . "\n\n";
// Base64 encode the file data
$data = chunk_split(base64_encode($body));
// Add file attachment to the message
$message .= "--{$mime_boundary}\n" .
"Content-Type: application/ms-word;\n" .
" name=\"testfile.doc\"\n" .
"Content-Disposition: attachment;\n" .
" filename=\"testfile.doc\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
// Send the message
$ok = @mail('toperson@email.com', 'test file', $message, $headers);
if ($ok)
{
echo 'yes';
} else
{
echo 'no';
}
我不明白为什么文件只有3k。
答案 0 :(得分:0)
作为编辑添加的脚本是功能脚本。空白文件是我的问题(用户因睡眠不足而出错)。对于那些遇到这个问题的人:编辑后的脚本是一个工作脚本。