"Help Center" on the site - Email Reference [closed]

0

Speak, people.

I created a form and I would like that whenever a person reports an error and complained to the help center of the site (the page where the user fills in an input / field and sends his report), the button, send what was typed to my email.

How can I make the message that the person typed fall into my email?

    
asked by anonymous 20.08.2016 / 20:02

1 answer

0

You can use the following code:

<form action="mailto:[email protected]" method="post" enctype="text/plain">
  <input type="text" id="nome" name="nome">
  <input type="submit" value="Enviar">
</form> 

If you wanted something more controllable the customizable would have to use a backend language (php, java, c #, etc).

I hope you have helped.

    
20.08.2016 / 20:58