You are probably getting an error sending the mail, and that error is not being displayed. Try changing your error_reporting
level:
error_reporting(E_ALL);
If that doesn't help and the page remains blank, if you have access to php.ini, check whether errors are being displayed and / or logged (display_errors
and log_errors
).
Pekka
2010-01-05 17:10:28