Access 8 - CC-Mail 8 
Author Message
 Access 8 - CC-Mail 8

I need to use use Access to create an e-mail in CC-Mail.  I have done this
with Outlook and Outlook Express with no problems.  When I try it with
CC-Mail, it gives me MAPI errors.  I checked in CC-Mail help under MAPI and
it basically gives the definition and that is about it.  I checked Lotus's
site for CC-Mail, limited mention of MAPI, but it mentions DDE as an option.
I have done a bit of DDE programming, basically connecting Access and
WinFax, so I am up to speed on it.

My questions are

(1) Has anyone done this and knows the DDE commands for CC-Mail?
(2) Is there something I am missing in MAPI?
(3) Is there really a big difference going DDE rather than MAPI?

Thanks for your help.
Wayne



Tue, 04 Sep 2001 03:00:00 GMT  
 Access 8 - CC-Mail 8
Wayne,

You can use our IDSMail component to send/receive cc:Mail from MS
Access.  For example:

Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface32.Server")
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           fax: (408) 776-1267
Send/Rcv Email *EASILY* through SMTP/POP, VIM, MAPI,
MHS & VINES http://www.intuitive-data.com/idsmail.htm
------------------------------------------------------



Tue, 04 Sep 2001 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. COM Access to ccMail

2. Access to CCMail - ways to autogenerate E mails from an application?

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

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

5. Accessing cc:Mail via VIM.DLL

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

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

8. How Do I launch cc:Mail with shell()?

9. HELP : How do I get the CC address from a mail item

10. Extract to and cc from generated e-mail message

11. CC Mail and Visual Basic

12. cc:Mail from VB

 

 
Powered by phpBB® Forum Software