Why does this php script work fine in firefox but

2019-08-01 03:15发布

问题:

I have a script that mails me my form data for a classified ad. Yesterday when I left work it worked fine. Now it is only working in FireFox and I'm getting my "else" statement "We encountered an error sending your mail, please notify XXXX@XX.COM" in both Opera AND Safari which makes no sense to me.

What's causing this error, and why does it fail in some browsers but work in others?

 <script language="javascript">
function submitt()
{
setTimeout('document.paypal.submit()',1000);
}
</script>

<?php 
 $to = "XXX@XXX.com" ; 
 $from = $_REQUEST['email'] ; 
 $name = $_REQUEST['Name'] ; 
 $headers = "From: $from"; 
 $subject = "Classified Tests"; 

 $fields = array(); 
 $fields{"Name"} = "Name";  
 $fields{"email"} = "Email"; 
 $fields{"Phone"} = "Phone"; 
 $fields{"Address"} = "Street Address";
 $fields{"City"} = "City";  
 $fields{"State"} = "State"; 
 $fields{"Zip"} = "Zip Code"; 
 $fields{"Classification"} = "Classification"; 
 $fields{"Ad-Headline"} = "Headline"; 
 $fields{"Ad-Content"} = "Ad Content"; 
 $fields{"Words"} = "Word Count"; 
 $fields{"Weeks"} = "Weeks to Run"; 
 $fields{"WordCount"} = "Total Words"; 
 $fields{"Rate"} = "Word Rate"; 
 $fields{"GrossAmountDue"} = "Gross Amount"; 
 $fields{"NonProfit"} = "Non Profit Ad?"; 

$item_name   = $_POST['item_name'];
$amount   = $_POST['amount'] ; 
$currency_code  = $_POST['currency_code'];
$no_shipping = $_POST['item_number'];
$shipping = $_POST['item_number'];
$cmd   = $_POST['cmd'];
$bn  = $_POST['bn'];
$no_note = $_POST['item_number'];
$lc   = $_POST['lc'];
$business   = $_POST['business'];

 $body = "This Ad has been submitted:\n\n"; foreach($fields as $a => $b){   $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); } 

 if($from == '') {print "You have not entered an email, please go back and try again";} 
 else { 
 if($name == '') {print "You have not entered a name, please go back and try again";} 
 else { 
 $send = mail($to, $subject, $body, $headers); 
 if($send) 
 {print "Your Ad has been submitted, redirecting to paypal."; echo "<SCRIPT LANGUAGE='javascript'>submitt();</SCRIPT>";} 
 else 
 {print "We encountered an error sending your mail, please notify XXX@XXX.com"; } 
 }
}


 ?> 

<form action="https://www.paypal.com/cgi-bin/webscr" id="paypal" target="_self" name="paypal" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="XXXXXXXXXXXX">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Classified Ad">
<input type="hidden" name="amount" id="Amount" value="">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the seller:">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="shipping" value="0.00">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">
</form>

What's causing this error, and why does it fail in some browsers but work in others?

回答1:

It'll work if you send it from your own email address with a PHP_EOL.

mail("XXX@XXX.com", "subject", "body", "From: Me" . PHP_EOL); // 'From' can be anything

See PHP: mail - Manual.



回答2:

Try the suggestions in the comments first, then try using this JavaScript code:

<script type="text/javascript">
function submit()
{
setTimeout(function(){document.paypal.submit();},1000);
}
</script>

I've wrapped the submit code in an anonymous function rather than a string, which is encouraged here: Efficient JavaScript - Dev.Opera.

Also, using <script language= is deprecated, you should use type instead (text/javascript). See script - MDN.