Hi rebirth,*
There're a couple of possibilities here:
If it's #1, I don't think you're going to solve it easily.
- It's a security feature of your autoresponder software - because the email doesn't really come from user, the autoresponder is either getting confused or attempting to send it to the machine that actually sent the email (namely, your server). [/*]
- The autoresponder is getting confused about the real name inside the*email address.[/*]
However, I think it is more like to be #2.* If you can find where FormMail adds the real name to the email address, and remove it, then it might start working.
Here are the two changes:
Line 1214:
becomesCode:$res_hdr .= "From: ".$SPECIAL_VALUES["email"]." (".$SPECIAL_VALUES["realname"].")".BODY_LF;
and line 1246:Code:$res_hdr .= "From: ".$SPECIAL_VALUES["email"].BODY_LF;
becomesCode:$headers = "From: ".$SPECIAL_VALUES["email"]." (".$SPECIAL_VALUES["realname"].")";
Please let me know if that makes a difference.Code:$headers = "From: ".$SPECIAL_VALUES["email"];
*


Reply With Quote
Bookmarks