Naum consigo enviar um e-mail através de ASP, vou passar o codigo, mas esse naum dah certo...
Set objCDONTS = Server.CreateObject("CDONTS.NewMail")
objCDONTS.From = Request.Form("Nome") & " <" & Request.Form("E-Mail") & ">"
strbody = ""
strbody = "<html><head><title>Faça seu Pedido - Confirmação de Pedido</title></head><body>" & VbCrLf
strbody = strbody & "<table width='100%' border='1'>" & VbCrLf
strbody = strbody & "<tr><td><font size='2' face='Tahoma, Verdana, Arial'>" & Request.Form("Texto") & "</font></td></tr>" & VbCrLf
strbody = strbody & "</table>" & VbCrLf
strbody = strbody & "</body></html>"
objCDONTS.To = "teste@info13.com.br"
objCDONTS.Subject = "Teste de E-mail"
objCDONTS.Body = strBody
objCDONTS.Send
Set objCDONTS = Nothing
Response.Redirect "teste2.asp"
nesse caso, ele manda tudo em texto, tipo, as tags, o texto tudo misturado...
manda o e-mail assim:
<html><head><title>Faça seu Pedido - Confirmação de Pedido</title></head><body>
<table width='100%' border='1'>
<tr><td><font size='2' face='Tahoma, Verdana, Arial'>Teste de e-mail...</font></td></tr>
</table>
</body></html>
se alguem puder me ajudar eu agradeço,
falow !!!
