Is there a configuration problem with using addresses that end in .net as opposed to addresses ending in .com?
I've got a form that sends and email to multiple addresses and it only sends it to the addresses ending in .com.
Is this normal?
Here's the code for reference:
<?PHP
if ($submit) {
mail("####@aol.com,#####@flash.net,#####@prodigy.net",
"Form Results",
"Name: $requiredName
Address: $CurrentStreetAddress
Current City: $CurrentCity
Home Phone: $HomePhone
Work Phone: $WorkPhone
Currently Employed?: $CurrentlyEmployed
Contact Employer?: $ContactEmployer
When Can I Start?: $StartJob
Previous Jobs: $FormerJobs
Attended Schools: $Education
",
"From: $requiredName <$requiredEmail>");
echo ("Thank you. A representative will contact you shortly.");
die();
}
?>
<FORM METHOD = "post">
<p align="left"><font color="#ffff00">Your Full Name: <br>
<input name="requiredName" type="text" size="57" maxlength="50">
<br>
Current Street Address: <br>
<input name="CurrentStreetAddress" type="text" size="57" maxlength="50">
<br>
City: <br>
<input name="CurrentCity" type="text" size="57" maxlength="30">
<br>
Home Phone Number<br>
<input name="HomePhone" type="text" size="57" maxlength="50">
<br>
Work Phone Number <br>
<input name="WorkPhone" type="text" size="57" maxlength="50">
<br>
Are you Current Employed?<br>
<select name="CurrentlyEmployed">
<option>Yes</option>
<option>No</option>
</select>
<br>
May We Contact Your Present Employer?<br>
<select name="ContactEmployer">
<option>Yes</option>
<option>No</option>
</select>
<br>
When Can you Start? <br>
<input name="StartJob" type="text" size="47" maxlength="50">
</font><font color="#ffff00"><br>
Former Employers<br>
<textarea name="FormerJobs" rows="4" cols="49" wrap="virtual"></textarea>
<br>
Education<br>
<textarea name="Education" rows="4" cols="49" wrap="virtual"></textarea>
</font> </p>
<p align="center">
<input type=submit name="submit">
<input type=reset name="reset">
</FORM>