1

我用验证 md5 哈希制作了一个简单的电子邮件注册系统。当验证链接被点击并且帐户变为“活动”时,我正在尝试向用户发送 pdf。这有时是有效的,而不是在其他人身上。我正在使用以下代码:

$subject = 'Your free PDF'; 
$random_hash = md5(date('r', time())); 
$headers = "From: info@mysite.com\r\nReply-To: info@mysite.com"; 
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""; 
$attachment = chunk_split(base64_encode(file_get_contents('../../assets/Free PDF.pdf'))); 
ob_start(); //Turn on output buffering 
?> 
--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

Hi,

Please find attached your free PDF.

~ The Team

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

Hi,<br>
<br>
Please find attached your free <strong>PDF</strong>.
<br>
~ The Team

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

--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: application/pdf; name="Free PDF.pdf"  
Content-Transfer-Encoding: base64  
Content-Disposition: attachment  

<?php echo $attachment; ?> 
--PHP-mixed-<?php echo $random_hash; ?>-- 

<?php 
//copy current buffer contents into $message variable and delete current output buffer 
$message = ob_get_clean(); 
//send the email 
$mail_sent = @mail( $email, $subject, $message, $headers ); 

当它不适用于电子邮件时,它永远不会适用于该电子邮件地址。例如,有人使用网络邮件从 yahoo.com 地址收到它。我在另一个上进行了相同的测试,并且效果很好。并不是说它会发送垃圾邮件或其他任何东西,它会发送到电子邮件,然后下载的 PDF 无效,并且大小似乎略有不同。

4

0 回答 0