Error sending feedback using mail.asp
SYMPTOMS
When submitting a message using the "Mail us"/feedback page fmail.asp an error message is displayed even though the message is sent successfully.
VERSIONS AFFECTED
Q-Shop Pro and Lite v3.5.0.
CAUSE
There is a bug in mail.asp. Follow the instructions below to correct it.
RESOLUTION
Edit mail.asp in notepad or another plain text/html editor and where it says:
If (errNumber1 < 0) OR (errNumber2 < 0) OR True Then
Change it to:
If (errNumber1 < 0) OR (errNumber2 < 0) Then
The "OR True" element should be removed as it is forcing the message to be that of failure.
|