发送带有附件文件php

时间:2017-04-11 06:37:33

标签: php jquery mysql email

上传文件时不发送到php中的电子邮件。这是我的代码。



<form method="post" action="">
Name : <input type="text" name="name"><br>
Email : <input type="text" name="email"><br>
Upload File : <input type="file" name="file"><br>
<input type="submit" name="submit" value="Submit">
</form>

<?php
if(isset($_POST['submit'])){
$name=$_POST['name'];
$email=$_POST['email'];
  $image=$_FILES['file']['name'];
  $img=$_FILES['file']['tmp_name'];
					
$recipient = "test1@gmail.com";
 
    // Mail subject
    $subject = "contact by $name";
 
    // Mail content
    $email_content = " contact from $name


Name : $name
Email : $email
File : $image
";
 
    // Mail headers
    $email_headers = "From:test1@gmail.com";
 
    // Main messages
    if (mail($recipient, $subject, $email_content, $email_headers))
        {
        echo "success";
        }
      else
        {
        
		}
  ?>
&#13;
&#13;
&#13;

姓名和电子邮件将发送至电子邮件,但上传的文件未显示在我的电子邮件中。在仅显示上传文件名的电子邮件中。如何解决这个问题。

3 个答案:

答案 0 :(得分:1)

mail()是一种非常基本的方法,不支持身份验证。此外,您无法通过此方法发送附件。但是,该方法的主要问题是它无法在循环中发送电子邮件,因为它会在每次发送电子邮件时打开和关闭套接字。

你应该使用swift mailer代替。你可以看看这个简单的教程 https://dzone.com/articles/how-to-send-emails-using-swift-mailer

答案 1 :(得分:0)

首先使用enctype将二进制数据文件上传到服务器

<form method="post" action="" enctype="multipart/form-data">

答案 2 :(得分:0)

你可以尝试这个代码..这是一个用附件发送邮件的示例代码.......

<?php
ini_set('max_execution_time', 300);

$target_dir = "uploads/";
$target_file= $target_dir .time().basename($_FILES['attachment']['name']); 
$movefile=move_uploaded_file($_FILES['attachment']['tmp_name'], $target_file);
    $username=$_POST['Name'];
    $email=$_POST['email'];
    $website=$_POST['website'];
    $comments=$_POST['comments'];

$to = "receiver@gmail.com";
$subject= "Mail from";

  $mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";

         $headers = "From:<example@gmail.com>"."\r\n" .
         "MIME-Version: 1.0\r\n" .
            "Content-Type: multipart/mixed;\r\n" .
            " boundary=\"{$mime_boundary}\"";

         $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" .
            "Contact Details"."\n".
         "Name :". $_POST['Name']."\n".


"\n\n";

         foreach($_FILES as $userfile)
         {
            $tmp_name = $userfile['tmp_name'];
            $type = $userfile['application/vnd.openxmlformats-officedocument.wordprocessingml.document'];
            $name = $userfile['name'];
            $size = $userfile['size'];

            if (file_exists($tmp_name))
            {
               if(is_uploaded_file($tmp_name))
               {
                  $file = fopen($tmp_name,'rb');

                  $data = fread($file,filesize($tmp_name));

                  fclose($file);


                  $data = chunk_split(base64_encode($data));
               }

               $message .= "--{$mime_boundary}\n" .
                  "Content-Type: {$type};\n" .
                  " name=\"{$name}\"\n" .
                  "Content-Disposition: attachment;\n" .
                  " filename=\"{$fileatt_name}\"\n" .
                  "Content-Transfer-Encoding: base64\n\n" .
               $data . "\n\n";
            }
         }

         $message.="--{$mime_boundary}--\n";

if (mail($to, $subject, $message, $headers)){
   echo "<script>alert('Mail sent Successfully');</script>";
            echo "<script>window.location = 'contact.php';</script>";

        } else {
            echo "<script>alert('Mail Not Send');</script>";
            echo "<script>window.location = 'contact.php';</script>";


        } 

?>