
Calling cc:Mail from a VB 3.0 App.
Al,
If you use our IDSMail OLE Server, here is all the VB3 code required to
send a file attachment via cc:Mail:
Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.AddRecipientTo "Jim Smith"
idsMail.AddRecipientCc "Mary Brown, Doug Williams"
idsMail.Subject = "Meeting Agenda"
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Message = "Here is the agenda for the weekly meeting."
idsMail.Send
Besides cc:Mail, IDSMail also supports any mail system based on VIM,
MAPI, SMTP/POP (internet mail), MHS, and Banyan VINES. For more
information, go to http://www.intuitive-data.com
--
Regards,
Eric June
Intuitive Data Solutions
--------- We Make OLE Servers Intuitive --------------
Intuitive Data Solutions
Send/Rcv Email *EASILY* through SMTP/POP, VIM, MAPI, MHS & VINES.
http://www.intuitive-data.com/idsmail.htm
------------------------------------------------------