"Help Center" on the website - E-mail reference

Asked

Viewed 34 times

0

Speak, folks.

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

How can I make the message typed by the person fall in my email?

  • 2

    Post your code and isolate the problems you are facing and also the difficulties in the question. Make a tour to learn more.

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 will have to use a backend language (php,java,c#, etc).

I hope it helped.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.