Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Outlook XP security dialogs
Message
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Outlook XP security dialogs
Versions des environnements
Visual FoxPro:
VFP 6 SP5
OS:
Windows 2000 SP4
Database:
Visual FoxPro
Divers
Thread ID:
00964917
Message ID:
00964917
Vues:
63
my system needs to send automatic emails, has been using automation of office2000 without problems aside from crashes automating excel (see previous post) aq thought I had on this was to update/upgrade office to see if that helped.

thats when I discovered... yep ms's secret plan to bugger up anyone automating emails.

the simple code I use is:

oOutlook = CreateObject("Outlook.Application")
ASclientmail = oOutlook.CreateItem(0)
ASclientmail.to = ASemailto
If ASemailsubject = ""
ASclientmail.subject = alltrim(jobname) + " Processing Report " + alltrim(dtoc(date()))
Else
ASclientmail.subject = alltrim(ASemailsubject)
Endif
ASclientmail.body = ASemailtext
If file(fullpath(ASemailattach))
ASclientmail.Attachments.Add(fullpath(ASemailattach))
Endif
ASclientmail.send
ASclientmail = .null.
oOutlook = .null.

ok so how do I make this work with hideous outlook xp? thanks in advance.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform