desde já agradeço estar me ajudando, mas não deu deu o seguinte erro
Tipo de erro:
(0x8004020F)
A classe de evento dessa assinatura está em uma partição inválida
/inoxrodrigues/enviar.asp, line 41
coloquei assim
<%
Set message = Server.CreateObject("CDO.Message")
Set conf = Server.CreateObject("CDO.Configuration")
Set param = conf.Fields
param("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
param("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
param.Update
strFrom = Request.Form("para")
strTo = Request.Form("email")
strSubject = Request.Form("assunto")
strBody = Request.Form("mensagem")
strBody = strBody & "<br /><br />" & Request.Form("telefone")
strBody = strBody & "<br /><br />" & Request.Form("endcompleto")
aux1 = chr(13)
aux2 = chr(10)
regex= "\\n|\\r|cc\:|bcc\:|"& aux1 &"|"& aux2
Set objRegExp = New RegExp
objRegExp.Pattern = regex
objRegExp.IgnoreCase = True
objRegExp.Global = True
strFrom = objRegExp.Replace(strFrom,"")
strTo = objRegExp.Replace(strTo,"")
strSubject = objRegExp.Replace(strSubject,"")
Set message.configuration = conf
message.From = strFrom
message.To = strTo
message.Subject = StrSubject
message.textBody = StrBody
message.HTMLBody = StrBody
message.Cc = "email@s.com.br"
message.Fields("urn:schemas:httpmail:importance").Value = 2
message.send
Set message = nothing
Msg = "Mensagem enviada com sucesso!"
Response.Write "<html><body><table align=center><tr><td> </td></tr>"
Response.Write "<tr><td> </td></tr>"
Response.Write "<tr><td><font face=Verdana><b>"& Msg &"</b></font></td></tr>"
Response.Write "</body></html>"
%>
E coloquei meu form desse jeito
<form method="post" action="enviar.asp" name="Inputform">
<input type="hidden" name="email" value="email@provedor.com.br">
<div align="center">
<center>
<table border="0" width="63%" cellspacing="0" cellpadding="0">
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">Nome:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><input type="text" name="para" size="40" width="300">
</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">Telefone:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><input type="text" name="telefone" size="40" width="300">
</font></td>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">Endereço Completo:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><input type="text" name="endcompleto" size="40" width="300">
</font></td>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">E-mail:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><input type="text" name="email" size="40" width="300"></font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">Assunto:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><input type="text" name="assunto" size="40" width="300"></font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana">Mensagem:</font></td>
</tr>
<tr>
<td width="96%">
<p align="left"><font size="2" face="Verdana"><textarea rows="5" name="mensagem" cols="25" style="font-family: Verdana; font-size: 10 pt; border-style: solid; border-width: 1"></textarea>
</font></td>
</tr>
<tr>
<td width="96%"> </td>
</tr>
<tr>
<td width="96%">
<p align="center"><font face="Verdana"><input type="submit" value="Enviar >>" name="enviar"></font></td>
</tr>
</table>
</center>
</div>
</form>