<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1170" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>IL SEGUENTE CODICE PHP SU MACCHINA WINDOWS 2000 CON SMTP 
DI FASTWEB<BR>RIESCE A SPEDIRE SOLO E-MAIL CON ALLEGATI .TXT E .HTML SENZA 
DARE<BR>ERRORI.<BR><BR>MENTRE SE INVIO PER ESEMPIO UN FILE A.PDF, MI ARRIVA 
NELLA CASELLA DI<BR>POSTA, MA ALL'APERTURA MI DA IL SEGUENTE 
ERRORE:<BR><BR>"ERRORE DURANTE L' APERTURA DEL DOCUMENTO, FILE E' DANNEGGIATO E 
NON<BR>PUO ESSERE RIPARATO"!?!?!<BR><BR><BR>IL CODICE:<BR>//INIZIO INVIO E-MAIL 
con allegati<BR><BR><BR>$mess=$m_testo;<BR>$intestazioni = "From: International 
PBI Newsletters\r\nReply-To:<BR><A 
href="mailto:info@internationalpbi.it\r\nX-Mailer">info@internationalpbi.it\r\nX-Mailer</A>: 
Sismail Web Email<BR>Interface\r\nMIME-version: 1.0\r\nContent-type: 
multipart/mixed;\r\n<BR>boundary=\"Message-Boundary\"\r\nContent-transfer-encoding:<BR>7BIT\r\nX-attachments: 
$titolo";<BR><BR>$body_top = "--Message-Boundary\r\n"; <BR>$body_top .= 
"Content-type: text/html ; charset=iso-8859-1\r\n"; <BR>$body_top .= 
"Content-transfer-encoding: 7BIT\r\n"; <BR>$body_top .= "Content-description: 
Mail message body\r\r\n\n"; <BR><BR>$msg_body = $body_top . $mess; 
<BR><BR><BR><BR>$filez = fopen($f, "r"); <BR>$contents = fread($filez, 
filesize($f)); <BR>$encoded_attach = chunk_split(base64_encode($contents)); 
<BR>fclose($filez); <BR><BR>$msg_body .= "\r\r\n\n--Message-Boundary\r\n"; 
<BR>$msg_body .= "Content-type: $tipo_allegato; name=\"$titolo\"\r\n"; 
<BR><BR><BR>//$tipo_allegato=tipo mime del file; $titolo= Nome dell'allegato 
<BR><BR>$msg_body .= "Content-Transfer-Encoding: BASE64\r\n"; <BR>$msg_body .= 
"Content-disposition: 
attachment;<BR>filename=\"$titolo\"\r\r\n\n";<BR><BR>//$titolo=nome 
dell'allegato <BR><BR>$msg_body .= "$encoded_attach\r\n"; <BR>$msg_body .= 
"--Message-Boundary--\r\n"; <BR><BR>if(!(@mail($html,$m_oggetto,$msg_body, 
$intestazioni))){ <BR>print "&lt;H5&gt;Invio della email fallito.&lt;/H5&gt;";} 
<BR>else<BR>?&gt;<BR>&lt;br&gt;<BR>&lt;br&gt;<BR>&lt;?php<BR>{echo ("E-Mail 
Spedita!");}<BR><BR><BR><BR>//FINE INVIO E-MAIL con 
allegati<BR><BR><BR><BR><BR>USO PER I PDF IL MIME: 
application/pdf.<BR><BR><BR>AIUTO SONO DISPERATO!!!<BR>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></BODY></HTML>