I am attempting to use a php script I generated Tectite to run my forms. I have followed the tutorial at http://flashpubs.com/formmail/ and used the troubleshooting info. at http://www.tectite.com/vbforums/show...rver-send-mail. I downloaded the two tests scripts testmail.php and testmail2.php. I failed on the first and the second one worked.
I put the -f info. into my script. Here is what I have but replace AT with @
/* Help: http://www.tectite.com/fmdoc/email_name.php */
define("EMAIL_NAME","^[-a-z0-9.]+"); // the '^' is an important security feature!
/* Help: http://www.tectite.com/fmdoc/target_email.php */
$TARGET_EMAIL = array("^tinaATmoundcityauctions\.com$");
/* Help: http://www.tectite.com/fmdoc/def_alert.php */
define("DEF_ALERT","robATmoundcityauctions.com");
/* Help: http://www.tectite.com/fmdoc/site_domain.php */
$SITE_DOMAIN =""; // your website domain name
My at mangle is set like this (again the AT is an @):
define("AT_MANGLE","");
Even though the tests all work the script doesn't. I get this message:
To: robATmoundcityauctions.com
From: FormMailATwww.moundcityauctions.com
The following error occurred in FormMail :
no_recipients
**********
Error=The form has an internal error - no actions or recipients were specified.
email:
realname:
NAME: 'rob'
EMAIL: 'robert_s_weimanAThotmail.com'
COMMENT: 'What I changed this time'
So, I get the DEF_ALERT email (with all the right data in it). I don't get the eamil to the intended target TinaAtmoundcityactions.com
Any ideas of what I have screwed up?
Rob
I put the -f info. into my script. Here is what I have but replace AT with @
/* Help: http://www.tectite.com/fmdoc/email_name.php */
define("EMAIL_NAME","^[-a-z0-9.]+"); // the '^' is an important security feature!
/* Help: http://www.tectite.com/fmdoc/target_email.php */
$TARGET_EMAIL = array("^tinaATmoundcityauctions\.com$");
/* Help: http://www.tectite.com/fmdoc/def_alert.php */
define("DEF_ALERT","robATmoundcityauctions.com");
/* Help: http://www.tectite.com/fmdoc/site_domain.php */
$SITE_DOMAIN =""; // your website domain name
My at mangle is set like this (again the AT is an @):
define("AT_MANGLE","");
Even though the tests all work the script doesn't. I get this message:
To: robATmoundcityauctions.com
From: FormMailATwww.moundcityauctions.com
The following error occurred in FormMail :
no_recipients
**********
Error=The form has an internal error - no actions or recipients were specified.
email:
realname:
NAME: 'rob'
EMAIL: 'robert_s_weimanAThotmail.com'
COMMENT: 'What I changed this time'
So, I get the DEF_ALERT email (with all the right data in it). I don't get the eamil to the intended target TinaAtmoundcityactions.com
Any ideas of what I have screwed up?
Rob