
E:Mail via cc:Mail using VB4.0
Rick,
Our IDSMail OLE Server will let your VB application easily send cc:Mail
messages. IDSMail is a universal E-mail send/receive programming
component that supports cc:Mail and any other mail system based on VIM,
MAPI, SMTP/POP3 (Internet mail), MHS, or Banyan VINES. For example, to
send a cc:Mail message with a file attachment, here is all the code you
would need:
Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Serve r")
idsMail.ObjectKey = "ABC123"
idsMail.NewMessage
idsMail.AddRecipientTo "Jim Smith"
idsMail.AddRecipientCc "Mary Brown, Doug Williams"
idsMail.Subject = "Meeting Agenda"
idsMail.Message = "Here is the agenda for the weekly meeting."
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Send
For more information on IDSMail, 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
------------------------------------------------------