Quote:
> How do i send mail using CC:Mail from within VB application?
> Thanks in advance to anyone who reply...
> How do i send mail using CC:Mail from within VB application?
> Thanks in advance to anyone who reply...
Katz,
Our IDSMail OLE Server will let you easily send cc:Mail from VB3 or VB4. Here is all the code you would need:
Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.AddRecipientTo "Jim Stevens"
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
IDSMail also supports Notes and any other mail system based on VIM, SMTP/POP, MAPI, MHS, or Banyan VINES. For more
information on IDSMail, please visit our web site at 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 VIM, SMTP/POP, MAPI, MHS & VINES
http://www.intuitive-data.com/idsmail.htm
------------------------------------------------------