Is it possible to return to page and send mail asynchonous
Hi,
In my webapp I post a registration form to a servlet from my first jsp page. The servlet then sends an email to the user and forwards the user to the second jsp page.
Without sending the email the user is transferred from the first jsp page to the second jsp page in less than a tenth of a second. almost instantly.
If I do send the email the user sees the browser loading for 4 to 5 seconds and is then forwarded to the next jsp page. Is it possible to send the email asynchronous so the user is forwarded immediately and the email is being send in het background without the user having to wait for it?
Thanks

