Usa un SMTP remoto....el que tienes de tu ISP para tu plan de Internet.... no necesitas tener un Servidor de Correo .... mira así... aca va un ejemplo
<!--
METADATA
TYPE="typelib"
UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
NAME="CDO for Windows 2000 Library"
-->
<%
dim cdoMessage, cdoConfig
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(cdoSendUsingMethod) = 2 con esta linea indico que uso remoto
.Item(cdoSMTPServer) = "tuserveremoto.xx" aca cambias por el tuyo
.Update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "
[email protected]"
.To = "
[email protected]"
.Subject = "Prueba"
.TextBody = "Este es un mensaje de prueba"
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>
Asi de facil.....