JMAIL es un ActiveX a través del cual Usted puede enviar email autenticado
set msg = Server.CreateOBject("JMail.Message")
msg.From = "miemail@midominio.com"
msg.FromName = "MI Nombre"
msg.MailServerUserName = "miemail@midominio.com"
msg.MailServerPassword = "CLAVEEMAIL"
msg.AddRecipient "tuemail@tudominio.com", "TU NOMBRE"
msg.Subject = "Titulo"
msg.Body = "Texto del mensaje"
msg.Send( "mail.midominio.com")