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

