CDONTS y "PERMISO DENEGADO"
Publicado por Clarko (2 intervenciones) el 28/11/2003 15:36:11
He hecho todo el proceso de crear el objeto y todo, pero al hacer llamado al metodo send, me envia un error de Permiso Denegado QUE TENGO QUE HACER??? lei por ahi que es problema de iniciar sesion... pero... como rayos hago eso...
<%
Dim Correo
Set Correo = Server.CreateObject("CDONTS.NewMail")
Correo.To = "[email protected]"
Correo.From = "[email protected]"
Correo.Subject = "Formulario admitido"
Correo.Body = "ESTO ES UN CORREO DE PRUEBA"
on error resume next
Correo.MailFormat = 0
Correo.BodyFormat = 0
Correo.Send
if err then
response.Write("Error de Envio: "&err.description&"")
end if
Set Correo = Nothing
%>
<%
Dim Correo
Set Correo = Server.CreateObject("CDONTS.NewMail")
Correo.To = "[email protected]"
Correo.From = "[email protected]"
Correo.Subject = "Formulario admitido"
Correo.Body = "ESTO ES UN CORREO DE PRUEBA"
on error resume next
Correo.MailFormat = 0
Correo.BodyFormat = 0
Correo.Send
if err then
response.Write("Error de Envio: "&err.description&"")
end if
Set Correo = Nothing
%>
Valora esta pregunta


0