I have a Visual FoxPro application for a client using Novell's Groupwise 5.2.3. We want to send email from within the application. With MS Outlook, the code is a piece of cake, looks like this (from another thread on this forum):
#DEFINE MAIL_MESSAGE 0
oApp = createobject("Outlook.Application"
oMail = oApp.CreateItem(MAIL_MESSAGE)
with oMAil
.to = "JoeSchmoe@nowhere.com"
.cc = "JoeSchmoesBoss@nowhere.com"
.bcc = "JoeSchmoesWife@nowhere.com"
.subject = "This is the subject"
.body = "This is the body"
.send()
endwith
I'm completely new to GW but there's GOT to be a similar way to do this.
TIA
Shanachie
#DEFINE MAIL_MESSAGE 0
oApp = createobject("Outlook.Application"
oMail = oApp.CreateItem(MAIL_MESSAGE)
with oMAil
.to = "JoeSchmoe@nowhere.com"
.cc = "JoeSchmoesBoss@nowhere.com"
.bcc = "JoeSchmoesWife@nowhere.com"
.subject = "This is the subject"
.body = "This is the body"
.send()
endwith
I'm completely new to GW but there's GOT to be a similar way to do this.
TIA
Shanachie