I have a auto reply set up at the same address the form is being sent to it's basically a thank you for your request.
When I send a email to this address it will send a thank you response. When FormGen sends a form there it will NOT send a thank you response.
It's like FormGen doesn't see who sent the form? When I look at the received email Header It shows a "period" after my email address (see below)
Subject: PROOF REQUEST PAGE From: bdannels@comcast.net.
process.php (mail code) listed below
mail("proof@agisolutions.com,bdannels@comcast.net","PROOF REQUEST PAGE",$message,"From: $Email.");
This line is sending the form to both address BUT no auto thank you response?
Any help would be appreciated.
Thanks for your time Bill Dannels
Remove the period from after $Email:
$message,"From: $Email"
Log in to post a comment.
I have a auto reply set up at the same address the form is being sent to it's basically a thank you for your request.
When I send a email to this address it will send a thank you response. When FormGen sends a form there it will NOT send a thank you response.
It's like FormGen doesn't see who sent the form? When I look at the received email Header It shows a "period" after my email address (see below)
Subject: PROOF REQUEST PAGE
From: bdannels@comcast.net.
process.php (mail code) listed below
mail("proof@agisolutions.com,bdannels@comcast.net","PROOF REQUEST PAGE",$message,"From: $Email.");
This line is sending the form to both address BUT no auto thank you response?
Any help would be appreciated.
Thanks for your time
Bill Dannels
Remove the period from after $Email:
$message,"From: $Email"