Put my email to receive the contact messages

Asked

Viewed 37 times

5

Where I add my email to receive the contact form messages?

<form name='contact-form'>
<div class='fm_namer'>
<input class='contact-form-name' id='ContactForm1_contact-form-name' name='Nome' onblur='this.placeholder = &apos;Name&apos;' onfocus='this.placeholder = &apos;&apos;' placeholder='Nome' size='30' type='text' value=''/>
<input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' onblur='this.placeholder = &apos;E-mail&apos;' onfocus='this.placeholder = &apos;&apos;' placeholder='E-mail' size='30' type='text' value=''/></div>
<div class='fm_message'>
<textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' onblur='this.placeholder = &apos;Message&apos;' onfocus='this.placeholder = &apos;&apos;' placeholder='Mensagem' rows='7'/>
<input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Enviar'/>
<div class='contact-form-error-message' id='ContactForm1_contact-form-error-message'>
</div>
<div class='contact-form-success-message' id='ContactForm1_contact-form-success-message'>
</div>
</div>
</form>

2 answers

0


Only with html the solution would be:

<form name='contact-form' action="mailto:[email protected]"">

Or using some programming language, if applicable edit your question by adding the language you are using...

  • It worked out, buddy, thanks!!!

-1

Hello @Miguel Filipe. You can use a PHP code to send the email. Only with HTML this is not possible. I recommend the Phpmailer library.

https://github.com/PHPMailer/PHPMailer In their GIT you find several examples.

Hasta la victoria siempre

Browser other questions tagged

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