Here is the code for sending appointments if anyone is interested. A great credit is due slighthaze and vargasfe
who is on vb forum on devx.
ng = CREATEOBJECT("NovellGroupwareSession")
gobj = ng.Login
mailmsg = gobj.MailBox.Messages.Add('GW.MESSAGE.APPOINTMENT')
mailmsg.FromText="someone"
mailmsg.Subject="This is an appointment test from nick"
mailmsg.BodyText="Did this work crieg"
mailmsg.NotifyWhenDeleted=0
mailmsg.StartDate=DATETIME(2004, 02, 19, 08, 30, 0)
mailmsg.OnCalendar="TRUE"
mailmsg.Place="HERE"
recpt=mailmsg.Recipients.Add('someproxy:somename@someplace.com','NGW','0')
recpt.Resolve
mailmsg.Send
HERE IS THE TREAD I USED FOR DISCUSSION: thread184-775726
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.