E:Mail via cc:Mail using VB4.0 
Author Message
 E:Mail via cc:Mail using VB4.0

How ya'll doin'

We currently have a gateway onto the internet using our cc:Mail.
What I am trying to do is compose multiple messages in an application
developed using VB4.0. and sending them over the WEB via cc:MAil.

How do I Start?

Thanks in advance

Rik!




Sat, 18 Sep 1999 03:00:00 GMT  
 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
------------------------------------------------------



Sun, 19 Sep 1999 03:00:00 GMT  
 E:Mail via cc:Mail using VB4.0

Quote:
> We currently have a gateway onto the internet using our cc:Mail.
> What I am trying to do is compose multiple messages in an application
> developed using VB4.0. and sending them over the WEB via cc:MAil.

Check out a product called IDSMail from Intuitive.  It works as an OLE
server application and is idiot-proof to implement.  Very slick.  I use it
in a very large (500+ desktops) application I run across our WAN between
L.A. and NYC to generate CC:Mails between groups of people.  It is very
cool.

their web sit is http://www.intuitive-data.com

Ryan Heil
Systems Analyst
CBS Inc.



Mon, 20 Sep 1999 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

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

2. sending Crystal reports via cc:Mail

3. Accessing cc:Mail via VIM.DLL

4. OL2000: Recieve Mails for a certain Mail-Accoutn via VBA

5. VB5 or 6 : Sending mail via default mail client

6. mail mail mail

7. Mail, mail, mail....

8. Creating a mail using standard e-mail client

9. Launching mail using Powerbuilder and mail session

10. how to obtain without using CDO programmatically an e-mail address from an incoming e-mail

11. Creating a mail using standard e-mail client

12. Sending mail in RTF whiteout using mail merge?

 

 
Powered by phpBB® Forum Software