Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Email form
I need a form, when it's submitted the data needs to go to my email client and the page needs to be redirected.
function mailMe( form ) {
// put some checks here
return true;
}
</script>
<form action="mailto:fredje138@gmail.com" method="POST"
enctype="text/plain" name="email"
onsubmit="return mailMe( this.form )">
<p align="center">Name:<br>
<input type="text" size="30" name="filled by"><br>
coming (ja/nee)<br>
<input type="text" size="30" name="komst "
value="ja"><br>
E-mail:<br>
<input type="text" size="30" name="EMAIL ADRESS"><br>
<input type="submit" value="Submit "></font></p>
</form>```
This one sends the data to my email but doesnt redirect and it asks to be sent or not, I want it to be sent without notice and afterwards redirected to another site. Is it possible?
If the submitting to email without notice isnt possible then submitting to a web page (html preferred) is ok too.
thx!