无法读取PHP邮件附件 [英] Unable to read PHP Mail Attachment

查看:92
本文介绍了无法读取PHP邮件附件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是PHP新手,我需要创建一个表格,要求用户输入多个字段并上传他/她的简历。当他/她提交表格时,应该将他/她的提交资料通过电子邮件发送给我,并附上简历。我已经使用PHP使用php邮件功能发送电子邮件。一切正常,除了文件附件无法读取。请参阅所附的屏幕截图。
https://imgur.com/a/UnUOyDR

上载的文件也是odt格式。我需要用户上传所有类型的简历格式。

I am new to PHP, I need to create a form such that it asks the user to enter several fields and upload his/her resume. When he/she submits the form, his/her submissions should be email to me with his/her resume as the attachment with the email. I have used PHP for sending the email using php mail function. Everything works fine, except that the file attachment is not able to read. Please see the screenshot attached. https://imgur.com/a/UnUOyDR
Also the file uploaded is in odt format. I need users to upload all type of resume formats.

我要发布代码的基本部分。如果我错了,请纠正我

I am posting the Essential Part of the Code. Please correct me if I am wrong

if ($_POST['submit_x']) {

            $cand_name = trim($_POST['cand_name']);
            $appl_email = $_POST['email'];

            $target_dir = "/home/test/public_html/new/job/hr/Resume/";
            $file = $_FILES['my_file']['name']; // Resume-Test.odt
            $path = pathinfo($file);
            $ext = $path['extension']; // odt
            $temp_name = $_FILES['my_file']['tmp_name']; // /tmp/phpqkLeuL
            $path_filename_ext = $target_dir.$file.".".$ext;
            move_uploaded_file($temp_name,$path_filename_ext);


            $mailto = 'robert.k1254@gmail.com';
            $subject = 'Subject';
            $message = 'My message';

            $content = file_get_contents($path_filename_ext);
            $content = chunk_split(base64_encode($content));

            // a random hash will be necessary to send mixed content
            $separator = md5(time());

            // carriage return type (RFC)
            $eol = "\r\n";

            // main header (multipart mandatory)
            $headers = "From: name <test@test.com>" . $eol;
            $headers .= "MIME-Version: 1.0" . $eol;
            $headers .= "Content-Type: multipart/mixed; boundary=\"" . $separator . "\"" . $eol;
            $headers .= "Content-Transfer-Encoding: 7bit" . $eol;
            $headers .= "This is a MIME encoded message." . $eol;

            // message
            $body = "--" . $separator . $eol;
            $body .= "Content-Type: text/plain; charset=\"iso-8859-1\"" . $eol;
            $body .= "Content-Transfer-Encoding: 8bit" . $eol;
            $body .= $message . $eol;

            // attachment
            $body .= "--" . $separator . $eol;
            $body .= "Content-Type: application/octet-stream; name=\"" . $file . "\"" . $eol;
            $body .= "Content-Transfer-Encoding: base64" . $eol;
            $body .= "Content-Disposition: attachment" . $eol;
            $body .= $content . $eol;
            $body .= "--" . $separator . "--";

            //SEND Mail
            if (mail($mailto, $subject, $body, $headers)) {
                echo "mail send ... OK"; // or use booleans here
            } else {
                echo "mail send ... ERROR!";
                print_r( error_get_last() );
            }
   } 



   <input type="file" name="my_file" /><br /><br />


推荐答案

如果使用PHP的mail()函数,从这里下载PHPMailer脚本: http://github.com/PHPMailer/PHPMailer

If you do it with PHP's mail() function,it difficult to find bugs.Download the PHPMailer script from here: http://github.com/PHPMailer/PHPMailer and include the main script file.

<?php
$email = new PHPMailer();
$email->From      = 'From mail id';
$email->FromName  = 'from name';
$email->Subject   = 'Subject of message';
$email->Body      = $bodytext;//body of the subject
$email->AddAddress( 'receiver email id' );

$file_path = 'path of the file you want to attach';

$email->AddAttachment( $file_path , 'filename' );

return $email->Send();
?>

这篇关于无法读取PHP邮件附件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆