Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Outlook Express
Message
 
À
03/03/2001 09:27:57
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Titre:
Divers
Thread ID:
00481398
Message ID:
00481746
Vues:
10
Here's the simply way to do it


LOCAL oOutlook, cRecipient, cSubject, oEmail

oOutlook = CREATEOBJECT("Outlook.Application")
cRecipient = "someone@somewhere.com"
cSubject = "Outlook Test"

oEmail = oOutlook.CreateItem(0)

WITH oEmail

  .To = cRecipient
  .Subject = cSubject
  .Body = "This is the body"
  .Send()

ENDWITH


Also take a look at MS Outlook 2000 Object Model
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform