2012-05-08 10 views
6

Sto inviando un'email tramite php nessun problema. Voglio allegare un file .csv insieme all'email HTML fornita. Non riesco a trovare come farlo. Esiste anche un determinato tipo di contenuto che devo includere nello $headers insieme a uno Content-Disposition di allegato?php invia email html con allegato .csv

$to = '[email protected]'; 
$subject = 'A Subject Line'; 
$headers = 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; 

$message = " 
<html> 
<head> 
    <title>List of New Price Changes</title> 
</head> 
<body>"; 

$message .="HTML table"; 
$message .="</body></html>"; 

mail($to, $subject, $message, $headers); 
+0

possibile duplicato del [Invia file CSV allegato all'e-mail] (http://stackoverflow.com/questions/5816421/send-csv-file-attached-to-the-email) – nickb

+0

sì ho visto quel post, ma non spiega cosa fa ciò che come messaggi multipart che è penso quello che sto cercando – ToddN

risposta

19
$fileatt_type = "text/csv"; 
$myfile = "myfile.csv"; 

     $file_size = filesize($myfile); 
     $handle = fopen($myfile, "r"); 
     $content = fread($handle, $file_size); 
     fclose($handle); 

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

     $message = "<html> 
<head> 
    <title>List of New Price Changes</title> 
</head> 
<body><table><tr><td>MAKE</td></tr></table></body></html>"; 

     $uid = md5(uniqid(time())); 

     #$header = "From: ".$from_name." <".$from_mail.">\r\n"; 
     #$header .= "Reply-To: ".$replyto."\r\n"; 
     $header .= "MIME-Version: 1.0\r\n"; 
     $header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n"; 
     $header .= "This is a multi-part message in MIME format.\r\n"; 
     $header .= "--".$uid."\r\n"; 
     $header .= "Content-type:text/html; charset=iso-8859-1\r\n"; 
     $header .= "Content-Transfer-Encoding: 7bit\r\n\r\n"; 
     $header .= $message."\r\n\r\n"; 
     $header .= "--".$uid."\r\n"; 
     $header .= "Content-Type: text/csv; name=\"".$myfile."\"\r\n"; // use diff. tyoes here 
     $header .= "Content-Transfer-Encoding: base64\r\n"; 
     $header .= "Content-Disposition: attachment; filename=\"".$myfile."\"\r\n\r\n"; 
     $header .= $content."\r\n\r\n"; 
     $header .= "--".$uid."--"; 

mail($to, $subject, $message, $header); 

Provare a modificare il codice per la situazione.

+0

Funzionerà per un confine semplice come "bound bound bound"? – ToddN

+1

Perché metti il ​​tuo confine? Il codice ti calcola uno carino. –

+0

Ahh ok, roger, prova ora, grazie – ToddN

1

Sei intestazioni HTTP confondere con la posta .... Probabilmente si desidera inviare un multipart messages, ma invece di reimplementare, mi piacerebbe andare per qualcosa come PHPMailer.