Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
SQL stored procedure and VFP
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Divers
Thread ID:
00881693
Message ID:
00881719
Vues:
21
Sergey,

Don't ask me why I want to do this....
Basicly from SQL stored procedure I want to send an email by executing the following VFP program:

oGroupWise=createobject('NovellGroupwareSession')
oAccount = oGroupWise.Login
oWorkfolder = oAccount.WorkFolder
oMessages = oWorkfolder.MESSAGES
oMessage = oMessages.ADD
oMessage.FromText = "fname.lname@stago-us.com"
oMessage.Subject = "Automatically generated email"
oMessage.BodyText = "This is body text"
oRecipients = oMessage.Recipients
oRecipients.Add("fname.lname@stago-us.com")
oRecipients.Resolve
oMessage.SEND
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform