I am using Formmail.php 'VERSION','Classic v1.07.2' because I have to (company policy) but it is not working correctly can someone please help.
Note: the only variables changed on the php by me are:
$referers = array('www.mypoconocabin.com', 'mypoconocabin.com');
// $recipient_array format is $recipient_array = array('sometext'=>'email@example.com','asdf'=>'ema il2@example.com');
$recipient_array = array('form'=>'allsport39@aol.com');
and this is the error I am receiving:
The following errors were found:- You are trying to send mail to a domain that is not in the allowed recipients list.
------------------------------------------------------------------
HTML
<form action="php/formmail.php" method="post">
<input type="hidden" name="recipient" value="allsport39@aol.com">
<input type="hidden" name="required" value="FullName,Email,Phone">
<input type="hidden" name="subject" value="Contact Form">
<input type="hidden" name="redirect" value="../index.html">
<div align="center">
<table border="0" width="367" cellspacing="0" cellpadding="0" align="center" style="padding-left: 25px">
<tr>
<td width="197">Desired Arrival Date <font size="1"><br />
(example November 09, 2007):</font></td>
<td width="143">
<input type="text" name="FullName" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Length of Stay <font size="1"><br />
(Number of Nights/Weeks):</font></td>
<td width="143"><input type="text" name="Address" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Number in Party<br />
<font size="1"> (# of Adults & # of Children):</font></td>
<td width="143"><input type="text" name="City" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Full Name: </td>
<td width="143"><input type="text" name="Zip" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Telephone w/ Area Code: </td>
<td width="143"><input type="text" name="Phone" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Best time to call: </td>
<td width="143"><input type="text" name="Fax" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197">Email Address:</td>
<td width="143"><input type="text" name="Email" size="20" class="formfields"></td>
</tr>
<tr>
<td width="197" rowspan="2" valign="top">Comments:</td>
<td width="143">
<textarea rows="4" name="Comments" cols="19" class="formfields" style="width: 168; height: 62"></textarea></td>
</tr>
<tr>
<td width="143">
<p align="center"><br>
<input type="submit" value="Submit" class="formfields">
<input type="reset" value="Reset" class="formfields" style="width: 59; height: 20"></td>
</tr>
</table>
<br />
</div>
</form>
PHP...
attached.