<html>
<head>
<title>Fale Conosco</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<%
if request.form <> "" then
set mail=server.createobject("cdonts.newmail")
mail.to="seuemail@email.com.br"
mail.from=request.form("e")
mail.subject="Assunto"
mail.body="Nome:"& request.form("n")& "<br>"
"Tel:" & request.form("t")& "<br>"
"sugestão:" & request.form("s")
mail.send
set mail=nothing
response.write "Seu email foi enviando com Sucesso!"
response.end
end if
%>
<body>
<form name="form1" method="post" action="">
<table width="51%" style="border: 1px; text-align: center;">
<tr>
<td width="22%">NOME</td>
<td width="78%">
<input name="n" type="text" id="n"></td>
</tr>
<tr>
<td>TEL</td>
<td><input name="t" type="text" id="t"></td>
</tr>
<tr>
<td>E-MAIL</td>
<td><input name="e" type="text" id="e"></td>
</tr>
<tr>
<td height="103">SUGESTAO</td>
<td><textarea name="s" id="s"></textarea></td>
</tr>
<tr>
<td colspan="2"><div style="text-align: center;">
<input type="submit" name="Submit" value="ENVIAR">
<input type="reset" name="Submit2" value="LIMPAR">
</div></td>
</tr>
</table>
</form>
</body>
</html>