Home > database >  How do I set a form to send the response somewhere?
How do I set a form to send the response somewhere?

Time:05-27

I got a google add-on, and I am making an email, with a form, but I don't know how to send there answer to a server, or if possible, send there answer as a reply to the email, and make it to where the question is required, and also have addresses suggested while there typing

<input   placeholder="Address">
<br><button >Submit Address</button>
</form>

CodePudding user response:

Use the below code and replace the [email protected] to your email.

<form action="mailto:[email protected]" method="post" enctype="text/plain">
Address:<br>
<input type="text" name="address"><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

  • Related