Hi,

Originally Posted by
jmorse00
no valid recipients were specified.
. . .
and on the php file, i only changed the
$TARGET_EMAIL = array(EMAIL_NAME.james@*********\.com$);
That error message means there's a problem with $TARGET_EMAIL. Since you only want one specific email address to be allowed, it should be:
Code:
$TARGET_EMAIL = array("^james@*******\.com$");
This is clearly defined on the Tectite website: http://www.tectite.com/fmdoc/target_email.php
. . . as well as numerous posts about this in the forum if you do a search for that error message.
The search feature is your friend. 
ginger
Bookmarks