-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario-asp-email.html
51 lines (47 loc) · 1.33 KB
/
formulario-asp-email.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
html>
<head>
<title>Formulário - Persits MailSender</title>
</head>
<body>
<p align="center"><font face="Arial">Exemplo de formulário
Persits MailSender<br>
</font>
</p>
<form method="POST" action="enviar.asp" name="form" target="_self">
<div align="center">
<table border="0" width="43%">
<tr>
<td width="23%"><font face="Arial">Nome:</font></td>
<td width="74%"><font face="Arial"><input type="text" name="fromnome"
size="20"></font></td>
</tr>
<tr>
<td width="23%"><font face="Arial">E-Mail:</font></td>
<td width="74%"><font face="Arial"><input type="text" name="fromemail"
size="20"></font></td>
</tr>
<tr>
<td width="23%"><font face="Arial">Assunto:</font></td>
<td width="74%"><font face="Arial"><input type="text" name="assunto"
size="20"></font></td>
</tr>
<tr>
<td width="23%" valign="top"><font face="Arial">Mensagem:</font></td>
<td width="74%"><font face="Arial"><textarea rows="5" name="mensagem"
cols="30"></textarea></font></td>
</tr>
<tr>
<td width="23%"></td>
<td width="74%"><font face="Arial"><input type="submit" value="enviar"
name="botao"></font></td>
</tr>
</table>
<p><font face="Arial" size="1">
<a target="_self" href="http://www.seudominio.com">
<span style="text-decoration: none">
<font color="#000000">www.seudominio.com</font>
</span></a></font>
</div>
</form>
</body>
</html>