Bill,
Our IDSMail control will let you send/receive Notes mail since it
supports the VIM protocol that Notes uses. IDSMail also lets you
send/receive mail via any other mail systems based on VIM, MAPI,
SMTP/POP3 (Internet mail), MHS, or Banyan VINES.
For example, to send a Notes mail message, here is all the code that you
need:
Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.NewMessage
idsMail.AddRecipientTo "Jim Smith/Engineering"
idsMail.AddRecipientCc "Mary Brown/Accounting, Doug Williams/Sales"
idsMail.Subject = "Meeting Agenda"
idsMail.Message = "Here is the agenda for the weekly meeting."
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Send
For more info, go to http://www.intuitive-data.com
--
Regards,
Eric June
Intuitive Data Solutions
--------- We Make OLE Servers Intuitive --------------
Intuitive Data Solutions fax: (408) 776-1267
Send/Rcv Email *EASILY* through SMTP/POP, VIM, MAPI,
MHS & VINES http://www.intuitive-data.com/idsmail.htm
------------------------------------------------------