Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
E-mail from FoxPro using Groupwise
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Divers
Thread ID:
00764746
Message ID:
00764823
Vues:
24
First thing, get the Groupwise client on your Development machine.
Then the Groupwise API is pretty simple.. Heres what we use to send
an E-Mail...

oGroupWise = CREATEOBJECT("NovellGroupwareSession")
oAccount = oGroupWise.Login
oWorkfolder = oAccount.WorkFolder
oMessages = oWorkfolder.MESSAGES
oMessage = oMessages.ADD
oMessage.FromText = ALLTRIM(.cFrom)
oMessage.Subject = ALLTRIM(.cSubject)
oMessage.BodyText = ALLTRIM(.cBodytext)

** Message Recipients
oRecipients = oMessage.Recipients
oMessage.SEND

If you need to send Attachments I can look that up and send you
that too... This works on Groupwise 6.

Cya!
Bob


>Hi,
>
>I am tring to add e-mail capability to an application.
>
>Our client uses a Novell server and Groupwise for e-mails.
>From the Novell website I could downliad some files for 'Groupwise MAPI'. These are Source code files, Resource files & Header files written in C.
>
>But I am not sure how to incorporate this in the FoxPro program.
>The header file includes #define statements as well as some User Defined data types.
>
>Any help will be greatly appreciated.
>
>Thank you.
>
>Ria
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform