Calling cc:Mail from a VB 3.0 App. 
Author Message
 Calling cc:Mail from a VB 3.0 App.

I am working on a project in VB 3.0 where I need to use cc:Mail to send a
file attachment across a company's LAN to another workstation. I have read
about using OLE Automation or API calls using vim.dll or smi.dll. Nothing I
have tried so far has worked. Has anyone successfully sent a file with a VB
application using Lotus cc:Mail?

Thanks,
Al Ashcraft




Sat, 13 Mar 1999 03:00:00 GMT  
 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
------------------------------------------------------



Wed, 24 Mar 1999 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. sending cc:mail through VB app.

2. calling cc:Mail in VB

3. E:Mail via cc:Mail using VB4.0

4. Working with VIM mail - Creating folders in cc:Mail

5. cc:Mail from VB

6. How to send cc:Mail from VB or MS Access

7. newbie: want to interface VB with old CC:MAIL

8. sending a cc:mail msg from VB

9. How to Use cc:Mail with VB

10. Use CC:Mail from VB

11. need help on formatting a message sent to cc: mail from VB

12. How to send cc:Mail from VB or MS Access

 

 
Powered by phpBB® Forum Software