php posta eki bazı müşterileri ile çalışmıyor

1 Cevap php

Ben bizim ajanlar sonra bizim müşteriye dışarı e-postayla alır bir pdf eki yüklemeyi sağlayan bir webform'u var. Ben e-posta oluşturmak için kullanabileceğiniz kod ben bir web sitesinde bulunan ve yakın zamana kadar iyi iş gibi görünüyordu. Bu eki yerine bir ek olarak değerlendirilebilecek e-postanın gövdesine yazdırılır bazı (sadece birkaç örneğin, gmail) mail müşterileri ile görünüyor. Bu bir kaç dışında ancak denedim hemen hemen her müşteri ile çalışır. Ben bu kadar bilgi yok gibi bu ne olabilir neden herhangi bir çözümün büyük mutluluk duyacağız.

if ($_FILES["file"]["error"] > 0)
{
echo "Error: " . $_FILES["file"]["error"] . "<br />";
return;
}
if ($_FILES["file"]["type"] != "application/pdf")
{
echo "<center>Attachment has to be valid .pdf<br><a href='../index.php'>Tillbaka</a></center>";
return; 
}
$file = chunk_split(base64_encode(file_get_contents($_FILES['file']['tmp_name'])));
/*
striped out some parts about how the body is constructed
note that there are no comment fields here in the real version of this sourcecode.
*/  

$msg = "msg here.." //i striped this part out as there's nothing odd about how the body is constructed its plain text

$random_hash = md5(date('r', time())); 

ob_start();
?> 
--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>" 

--PHP-alt-<?php echo $random_hash; ?>  
Content-Type: text/plain; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit

<?php echo $msg;?>

--PHP-alt-<?php echo $random_hash; ?>-- 

--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: application/pdf; name="<?php echo $_FILES["file"]["name"];?>"
Content-Transfer-Encoding: base64
Content-Disposition: attachment

<?php echo $file;?>

--PHP-mixed-<?php echo $random_hash; ?>-- 
    <?php    
$message = ob_get_clean();     
//I removed some info about recievers, reply-to, from etc..
mail($hidden_variable, "hidden subject", $message, "From:Hidden Name <no-reply@hidden.com>\r\nReply-To: no-reply@hidden.com\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""))    

1 Cevap

Sen e-postaları bir istemci tarafından okunacak nasıl garatee olamaz. Bazı yarıya göre çok zeki ve örnek görüntüler sık ​​sık yer almaktadır için, vücutta ekleri eklemek için çalışacağız. Çok değil bu konuda yapabilirsiniz. Bir çözüm sunucunuzda PDF saklamak ve indirmek için ona bir e-posta bağlantısını olacaktır.