2016-07-13 3 views
0

나는 PHP를 사용하여 이메일에 업로드 된 파일을 보내려고 애 쓰고있다. 내 문제는 내가 전자 메일로 업로드 한 파일에 해당 전자 메일로 보내는 모든 것입니다. 여기 내 코드가 작동하지 않습니다.업로드 된 파일을 PHP로 이메일에 보내려면

<?php 
     if (isset($_POST['submit'])) { 
     $headers = "From: [email protected] mailer \r\n"; 
     echo $message .= $_POST['message']; 
      /* GET File Variables */ 
     $tmpName = $_FILES['attachment']['tmp_name']; 
     $fileType = $_FILES['attachment']['type']; 
     $fileName = $_FILES['attachment']['name']; 

     if (file_exists($tmpName)) { 
      /* Reading file ('rb' = read binary) */ 

      $file = fopen($tmpName,'rb'); 
      $data = fread($file,filesize($tmpName)); 
      fclose($file); 

      /* a boundary string */ 
      $randomVal = md5(time()); 
      $mimeBoundary = "==Multipart_Boundary_x{$randomVal}x"; 

      /* Header for File Attachment */ 
      $headers .= "\nMIME-Version: 1.0\n"; 
      $headers .= "Content-Type: multipart/mixed;\n" ; 
      $headers .= " boundary=\"{$mimeBoundary}\""; 

      /* Multipart Boundary above message */ 
      $message = "This is a multi-part message in MIME format.\n\n" . 
      "--{$mimeBoundary}\n" . 
      "Content-Type: text/plain; charset=\"iso-8859-1\"\n" . 
      "Content-Transfer-Encoding: 7bit\n\n" . 
      $message . "\n\n"; 

      /* Encoding file data */ 
      $data = chunk_split(base64_encode($data)); 

      /* Adding attchment-file to message*/ 
      $message .= "--{$mimeBoundary}\n" . 
      "Content-Type: {$fileType};\n" . 
      " name=\"{$fileName}\"\n" . 
      "Content-Transfer-Encoding: base64\n\n" . 
      $data . "\n\n" . 
      "--{$mimeBoundary}--\n"; 

     } 
     $to_user = "[email protected]"; 
     $flgchk = mail("$to_user", "$subject", "$message", "$headers"); 

      if ($flgchk) { 
      echo "Done, <br>"; 
      } 
      else 
      {   
      echo "Failed to send email, <br>"; 
      echo "Redirecting you to your <a href=\"?page=inbox.php\">Inbox</a>"; 
      } 
     } 
     ?> 
     <form name="form1" method="post" action="" enctype="multipart/form-data"> 
     <table> 
      <tr> 
      <td width='20'><b>Select File:</b> </td> 
      <td width='20'><input type="file" name="attachment"></td> 
      </tr> 
      <p><td> 
      <input type="submit" name="Submit" value="Send" class="Submit" /></td></tr></table> 
      </p> 
     </form> 

이 코드를 조정하거나 다른 작동 코드를 보내주십시오.

+0

시도하고 자신을 그렇게하지 마십시오 지저분한 합병증을 피하려면 [SwiftMailer] (http://swiftmailer.org/)와 같은 것을 사용하십시오. – Repox

답변

1

PHPMailer를 사용하여 데모를 만들었습니다. 먼저 phpmailer.class.php 파일을로드하십시오. 당신은 여기에서 다운로드 할 수 있습니다 http://github.com/PHPMailer/PHPMailer

require_once('/class.phpmailer.php'); // Your full path of phpmailer.php file 

$email = new PHPMailer(); 
$email->From  = 'From email address'; //From email address 
$email->FromName = 'Your name'; //your name 
$email->Subject = 'Message'; //Message 
$email->Body  = 'Body Text Message'; //Body message 
$email->AddAddress('To email address'); //To email address 

$attach_file = 'Your file path'; //Attached file path 

$email->AddAttachment($attach_file, 'file_name.doc'); 

return $email->Send(); 
+0

로컬 호스트가 아닌 라이브 서버에서 작업 중이므로 phpmailer를 사용하지 않고 – srikanth

+0

"첨부 파일이 포함 된 전자 메일 보내기"를 읽으십시오. 그것은 라이브 작업 중입니다. http://webcheatsheet.com/php/send_email_text_html_attachment.php –

+0

확인 코드 위에 위의 코드를 추가 할 수 있습니까? – srikanth