ralmeidasantos Posted May 27, 2013 at 10:13 AM Report #509120 Posted May 27, 2013 at 10:13 AM boas, tenho um fomulario e para enviar o mail para mim tenho este codigo para nao esta a funcionar... ??? <a href="meu mail" class="button">Send</a> HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:18 AM Report #509124 Posted May 27, 2013 at 10:18 AM Explica melhor sff
ralmeidasantos Posted May 27, 2013 at 10:21 AM Author Report #509128 Posted May 27, 2013 at 10:21 AM boas, tenho um formulário de contactos mas na parte do enviar, nao envia para o meu email <section id="content"> <div class="wrapper"> <h2>Contacte</h2> <form id="ContactForm" action="#"> <div> <div class="wrapper"> <span>Nome:</span> <input type="text" class="input" > </div> <div class="wrapper"> <span>E-mail:</span> <input type="text" class="input" > </div> <div class="textarea_box"> <span>Mensagem:</span> <textarea name="textarea" cols="1" rows="1"></textarea> </div> <span> </span> <a href="#" class="button">Limpar</a> <a href="meu email" class="button">Enviar</a> </div> </form> </div> </section> </div> </div> </div> </div> HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:24 AM Report #509130 Posted May 27, 2013 at 10:24 AM Experimenta assim: <form action="MAILTO:someone@example.com" method="post" enctype="text/plain"> </form>
ralmeidasantos Posted May 27, 2013 at 10:29 AM Author Report #509132 Posted May 27, 2013 at 10:29 AM nao aparece nenhum botao HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:32 AM Report #509135 Posted May 27, 2013 at 10:32 AM (edited) nao aparece nenhum botao Faz assim: <section id="content"> <div class="wrapper"> <h2>Contacte</h2> <form id="ContactForm" action="MAILTO:someone@example.com" method="post" enctype="text/plain"> <div> <div class="wrapper"> <span>Nome:</span> <input type="text" class="input" > </div> <div class="wrapper"> <span>E-mail:</span> <input type="text" class="input" > </div> <div class="textarea_box"> <span>Mensagem:</span> <textarea name="textarea" cols="1" rows="1"></textarea> </div> <span> </span> <input type="reset" value="Limpar"> <input type="submit" value="Enviar"> </div> </form> </div> </section> </div> </div> </div> </div> Edited May 27, 2013 at 10:33 AM by legd1991
ralmeidasantos Posted May 27, 2013 at 10:36 AM Author Report #509137 Posted May 27, 2013 at 10:36 AM O problema é que nao recebo nada no meu email. HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:38 AM Report #509139 Posted May 27, 2013 at 10:38 AM O problema é que nao recebo nada no meu email. Isso apenas vai abrir por exemplo o outlook para enviar o e-mail. se queres enviar directamente não podes fazer apenas em html
ralmeidasantos Posted May 27, 2013 at 10:39 AM Author Report #509141 Posted May 27, 2013 at 10:39 AM nem o outlook abre ja esta obrigado HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:40 AM Report #509142 Posted May 27, 2013 at 10:40 AM Era isso que querias?
ralmeidasantos Posted May 27, 2013 at 10:41 AM Author Report #509143 Posted May 27, 2013 at 10:41 AM sim, e para por ex eu clico em enviar e isto envia logo para o meu email HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:43 AM Report #509144 Posted May 27, 2013 at 10:43 AM sim, e para por ex eu clico em enviar e isto envia logo para o meu email Mas para enviares directamente tens de usar php ou uma linguagem .net por exemplo
ralmeidasantos Posted May 27, 2013 at 10:46 AM Author Report #509146 Posted May 27, 2013 at 10:46 AM onde posso arranjar esse code? HTML Master The programs change the world
legd1991 Posted May 27, 2013 at 10:53 AM Report #509150 Posted May 27, 2013 at 10:53 AM Procura na net como enviar mails na linguagem que vais usar, por exemplo php ou asp.net
I-NOZex Posted June 1, 2013 at 03:24 PM Report #510421 Posted June 1, 2013 at 03:24 PM em php, a forma mais simples de mandar um mail: <?php mail("endereco@email.com", "ASSUNTO", "Mensagem"); ?> B2R » Beat2Revolution v3.0b | Regista e divulga-nos beat2revolution.net
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now