Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/04/2004, 07:45
Avatar de zero_sos
zero_sos
 
Fecha de Ingreso: noviembre-2002
Ubicación: Santo Domingo
Mensajes: 128
Antigüedad: 22 años, 6 meses
Puntos: 0
Exclamación Problema Outlook.Application

Hola a todos,

Estoy intentando enviar un email utilizando Exchange con el outlook application.

Ahora bien, cuando pongo el siguiente codigo:

<%

dim o
dim m

set o = createobject("outlook.application")
set m = o.CreateItem(olMailItem)

with m
'.to = inputbox("To", "Mail","")
'.subject = inputbox("Subject", "Mail","")
'.body = inputbox("Content", "Mail","")


.to = "efernandez"
.subject = "Importante"
.body = "Por fin lo hicimos"
.send
end with

%>


Sin embargo, cuando lo ejecuto me dice que Activex Cant Create Object "Outlook.Application", alguien sabe que error puede ser este?

Yo comprobe este codigo haciendo un .vbs con este codigo, y se ejecuto sin problemas.

Por favor cualquier comentario me servira de mucho.

Saludos.!

Zero