Comercial:
(48) 3232-0772
Seg. a Sexta - 8 a 17 h

Suporte:
(48) 9960-6483
Atendimento 24 horas.

Envie suas duvidas.
Em breve entraremos
em contato.
 
Quinta-feira, 25 de abril de 2024  
UM EXEMPLO PRÁTICO
1. Formulário
Copie o código abaixo e inclua como uma página em seu site. Designe o arquivo com um nome tipo "teste.html".
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title> Teste de Formulario </title>
</head>
<body>
<center>
<br><br><br>
<p><b>Fale Conosco</b></p>
<form method="post" action="http://www.floripa-sc.com.br/form/formmail.php">
<table width="450" cellspacing="0" cellpadding="0" border="1">
    <tr>
        <td align="center">
            <table width="400" cellspacing="0" cellpadding="0" border="0">
                <tr><td colspan="2" height="10"></td></tr>
                <tr>
                    <td width="100">Nome:</td>
                    <td width="200">
                        <input type="text" name="nome" size="40" maxlength="40">
                    </td>
                </tr>
                <tr><td colspan="2" height="10"></td></tr>
                <tr>
                    <td width="100">Email:</td>
                    <td width="200">
                        <input type="text" name="email" size="40" maxlength="45">
                    </td>
                </tr>
                <tr><td colspan="2" height="10"></td></tr>
                <tr>
                    <td width="100">Cidade:</td>
                    <td width="200">
                        <input type="text" name="cidade" size="35" maxlength="35">
                    </td>
                </tr>
                <tr><td colspan="2" height="10"></td></tr>
                <tr>
                    <td width="100">Telefone:</td>         
                    <td width="200">
                        <input type="text" name="ddd" size="3" maxlength="2">  
                        <input type="text" name="fone" size="10" maxlength="8">
                    </td>
                </tr>
                <tr><td colspan="2" height="10"></td></tr>
                <tr>
                    <td width="100" valign="top">Mensagem:</td>
                    <td width="200">
                        <textarea name="mensagem" cols="30" rows="6"></textarea>
                    </td>
                </tr>
                <tr><td colspan="2" height="30"></td></tr>
                <tr>
                    <td colspan="2" align="center">
                        <input type="submit" value="Enviar">
                        <input type="hidden" name="destinatario"
                            value="contato@bluesk.com">
                        <input type="hidden" name="assunto" value="Site - Fale Conosco">
                        <input type="hidden" name="redirecionar"
                            value="http://www.bluesk.com/confirmacao.html">
                    </td>
                </tr>
                <tr><td colspan="2" height="10"></td></tr>
            </table>
        </td>
    </tr>
</table>
</form>
</center>
</body>
</html>
IMPORTANTE:
(*) Não esqueça de trocar o parâmetro "destinatario" pelo seu email ou para qual você quer que os dados do formulário sejam enviados.
(*) Altere também o parâmetro "redirecionar" para uma página de seu site.
2. Recebimento de Dados
Em sua conta de email você receberá os dados preenchidos no formulário. Veja o exemplo abaixo: