
20/05/2013, 00:42
|
 | | | Fecha de Ingreso: enero-2013 Ubicación: Madrid
Mensajes: 72
Antigüedad: 13 años, 1 mes Puntos: 8 | |
| Respuesta: Alternativa a CDONTS CDOSYS:
Código:
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="[email protected]"
myMail.To="[email protected]"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
|