-1
Good Afternoon I developed a site of Html5 and css3 and so now I have a "little problem" I have to make a form on this site with basic information like email phone name and subject and the message and this should be sent to my email when the staff send the form would like to know if there is a way to do this without using php
Follow my code with MAILTO:
<form id="main-contact-form" action="MAILTO:[email protected]" method="post" enctype="text/plain">
<div class="row wow fadeInUp" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="col-sm-6">
<div class="form-group">
<input type="text" name="name" class="form-control" placeholder="Nome" required="required">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<input type="email" name="email" class="form-control" placeholder="Email" required="required">
</div>
</div>
</div>
<div class="form-group">
<input type="text" name="subject" class="form-control" placeholder="Assunto" required="required">
</div>
<div class="form-group">
<textarea name="message" id="message" class="form-control" rows="4" placeholder="Escreva sua Mensagem" required="required"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn-submit">Enviar</button>
</div>
</form>
See if it helps,(maybe it’s a duplicate of) How to do a Submit sending filled data in the form to an email? and How to send emails using Javascript?
– rray