-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-email-ssl.html
73 lines (47 loc) · 2.11 KB
/
form-email-ssl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Formulário FormMail</title>
<meta property="og:title" content="Teste de Envio via FormMail" />
<meta property="og:locale" content="pt_br" />
</head>
<body>
<!-- PARA REVENDA PLESK e CPANEL UTILIZE O ENDEREÇO ABAIXO: -->
<form method="post" action="http://scripts.hospedagemdesites.ws/scripts/formmail.pl"/>
<!-- PARA HOSPEDAGEM COMPARTILHADA, DESCOMENTE A LINHA ABAIXO: -->
<!-- <form method="post" action="http://www18.locaweb.com.br/scripts/FormMail.pl"/> -->
<!-- Abaixo, informe uma conta de email do domínio da hospedagem (email@domínio.com.br) -->
<input type="hidden" name="email" value="[email protected]"/>
<!-- Informe a conta de emails que receberá os dados do formulário nele preenchido. -->
<!-- Dica: Para adicionar outro recipiente do formulário, separe as contas de email por virgula -->
<!--Ex.: value="[email protected], podeseroutroemail@outrodomínio.com.br" -->
<input type="hidden" name="recipient" value="[email protected]"/>
<!-- Abaixo, informe o qual o assunto padrão da mensagem -->
<input type="hidden" name="subject" value="FormMail Teste Locaweb"/>
<!-- Nesta tag, informe o redirecionamento desejado -->
<!--página principal do site, mensagem de agradecimento, etc -->
<input type="hidden" name="redirect" value="http://seudominio.com/obrigado.html"/>
<table width="28%" border="1">
<tr> <td height="19" width="25%">
Nome: </td>
<td height="19" width="75%">
<input type="text" name="nome" size="40" value="">
</td>
</tr> <tr> <td height="19" width="25%">E-mail: </td>
<td height="19" width="75%">
<input type="text" name="replyto" size="40" value=""></td>
<!-- Este parametro ( name="replyto" ) recebe o email que você responderá posteriormente "Responder Para" -->
</tr> <tr>
<td height="19" width="25%">Mensagem: </td>
<td height="19" width="75%">
<textarea name="mensagem"></textarea></td>
</tr> <tr>
<td height="19" width="25%"> </td>
<td height="19" width="75%">
<input type="submit" name="Submit" value="Enviar Dados"> </td>
</tr>
</table>
</form>
</body>
</html>