Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NovellGroupWareSession call to show the email

Status
Not open for further replies.

jonoX

Programmer
Mar 13, 2003
11
IE
the code below works for send but I want to show the email before the user sends

GWApp = CreateObject("NovellGroupWareSession") && login to GW
*Login using () will login to the open account or run the login
*script if none was opened.
gWAccount = GWApp.Login()
*Create a new message in the Mailbox
gwMessage = gWAccount.MailBox.Messages.Add
with gwMessage
.Subject = allt(oF2W.DOC_FileName)
recip=allt(thisform.text9.value)
.Recipients.Add( recip)
.Attachments.Add( nfile)
if thisform.optiongroup7.value=1 &&send
.Send
else &&I want to show the email
????? .show()
endif
endw
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top