我上設置通過我的PayPal IPN腳本自動發送的電子郵件的響應,但是工作下面的代碼將導致PayPal的沙盒失敗。PHP郵件功能造成的錯誤
// PAYMENT VALIDATED & VERIFIED!
$email = $_POST['payer_email'];
$password = mt_rand(1000, 9999);
$to = $email;
$subject = 'Download Area | Login Credentials';
$message = '
Thank you for your purchase
Your account information
-------------------------
Email: '.$email.'
Password: '.$password.'
-------------------------
You can now login at http://yourdomain.com/PayPal/';
$headers = 'From:[email protected]<script type="text/javascript">
/* <![CDATA[ */
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
</script>' . "\r\n";
mail($to, $subject, $message, $headers);
是否存在某種簡單錯誤或腳本導致錯誤的更深層原因。請記住,我是新手,這是我從http://code.tutsplus.com/tutorials/using-paypals-instant-payment-notification-with-php--net-3271複製並粘貼的代碼。
此外,沒有從該電子郵件我使用必須位於我使用主辦的腳本在同一臺服務器上?
刪除郵件以避免泄露個人信息。
什麼錯誤? –
請不要在郵件中以明文形式發送任何密碼。 –
作爲參考,IPN沙盒不會告訴我錯誤是什麼,我只知道它不起作用。 –