Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Outlook 2003 e-mail sending confirmation
Message
From
29/04/2008 07:34:26
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Outlook 2003 e-mail sending confirmation
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Vista
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01313743
Message ID:
01313743
Views:
53
Hi

I use this code to send e-mails via MS Office Outlook in my application:

oOutlook = Createobject("Outlook.Application")

oMailltem = oOutlook.Createitem(0)

With oMailltem
.To = ALLTRIM(email.destinatar)
.Subject = ALLTRIM(email.Asunto)
.Body = ALLTRIM(email.cuerpo)
.Attachments.add(ALLTRIM(email.attach))
.send()
Endwith

If the machine has Outlook 2000, there is no problem.
If the machine has Outlook 2007, there is no problem also.
If the machine has Outlook 2003, Outlook ask for sending confimation.

Does anybody know how to avoid this in Outlook 2003?. I need it because my application must run in autonomous mode.

Thanks in advance

Carlos
Next
Reply
Map
View

Click here to load this message in the networking platform