Ok here is what happends if i set my email address to my hotmail address it will submit no problems and it does the auto reply. But If i point it to my account on everyone.net the form takes forever to send. Then when it finishes the process it doesn't send it. Is it becase i am using everyone.net for my email? O here is my script.
<?
//get all the inputs from all of the forms
$i=0;
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
$val=stripslashes($val);
//mail everything off to admin
"$key = $valn";
}
$mailto= "goten98@hotmail.com";
$subject= "Affilate";
$from= "$email";
$full= "my name is: $full
My web site and be found at: $web
Sites name is: $name
I get $month hits a month";
mail( "$mailto", "$subject","$full", "From: $email");
?>
<?
//get all the inputs from all of the forms
$i=0;
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
$val=stripslashes($val);
//mail everything off to admin
"$key = $valn";
}
$sendto= "$email";
$subjectq= "Affilate";
$froms= "Harolds Dragonball Site";
$letter= "Dear: $full at $email
If this address <$web> and sites name <$name> is correct then you should be getting and email from me stateing that you site had been added to my site. I must warn you that 1/10 sites make it to my links page. Also If your happends to be that one out of ten then you must be willing to add my sites link to web page. I mean it is only fair if your link is on my page that you will link to me. You should be getting a responce from me in about 2 to 3 days.";
mail( "$sendto", "$subjectq","$letter", "From: Harolds Dragonball Site");
?>