When you say you aren't getting any error messages, have you set $DEF_ALERT, or do you just mean you aren't getting any error messages on the page after submission?
Your good_url is not a "template" so it wouldn't be affected by the same things as good_template.
When using templates, you need to set TemplateMissing, unless all of your fields are required. I also set "KeepLines" in the mail_options field.
The only other thing I can think of is to change the following in the script: (Of course, make a backup first.) You can try these independently and see if it solves your problem, or you might need both changes.
Change:
Code:
define("BODY_LF","\r\n");
. . . to this:
Code:
define("BODY_LF","\n");
. . . and this:
Code:
define("HEAD_CRLF","\r\n");
. . . to this:
Code:
define("HEAD_CRLF","\n");
ginger
Bookmarks