<div id="mainDiv">
<div id="marca">
<img class="imagens" src="media/img/titulo.png" alt="Titulo">
</div>
<div id="anaMaria">
<img class="imagens" src="media/img/fundoCadastroDois.png" alt="FundoCadastroDois">
</div>
<div id="cadastro">
<p>....</p>
<form id="contatoForm" method="post" action="mailto:[email protected]">
<input class="cells" type="text" name="nome" placeholder="nome">
<input class="cells" type="text" email="email" placeholder="email">
<button type="submit" value="click" id="enviar"></button>
</form>
</div>
</div>
I've implemented this code above, but as soon as I submit the form, it opens my own email and with the completed data as if I were sending a new email. What I want is for the user to fill in with name and email in the fields and this data goes to my inbox. I searched for solutions but most use the same thing I'm doing or with href, which does not solve the problem. I know it's simple but I need a simple thing to finish.