Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/04/2003, 18:33
Avatar de wScorpion
wScorpion
 
Fecha de Ingreso: abril-2003
Ubicación: En Chilito lindo !!!
Mensajes: 9
Antigüedad: 22 años, 2 meses
Puntos: 0
Ayudaaa: Error al enviar e-mail con smtpsvg.mailer

Hola Maestros, no se porque al tratar de enviar un mail usando smtpsvg.mailer me da el siguiente error: "Server property is required"

El código va así:
(Ojo que el smtpsvg.mailer esta bien instalado)

set mailer = server.createobject("smtpsvg.mailer")
mailer.remotehost = "10.209.25.56" 'esta es ficticia
mailer.fromname = "WScorpion<[email protected]>"
mailer.fromaddress = [email protected]
mailer.addrecipient "[email protected]", "[email protected]"
mailer.subject = "prueba"
mailer.bodytext = "Formulario proveniente de Internet"
mailer.addCC "[email protected]", "[email protected]"
if not mailer.sendmail then
response.write "Error: <br>"
response.write mailer.response
else
response.write " <br>Mensaje Enviado con exito"
end if


PLEASE !!!!!!