
Trying to create an Internet Email field on Form or Table
Peter,
Our IDSMail OLE Server will let you send/receive E-mail from your Access
application quite easily. IDSMail works with any E-mail system based on
MAPI, SMTP/POP3, VIM, MHS, or Banyan VINES.
For example, here is all the Access Basic code you would need to send an
Internet E-mail message with a file attachment:
Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.MailSystem =IDSM_SYS_SMTP_POP
idsMail.SMTPServer = "myprovider.com"
idsMail.Subject = "Meeting Agenda"
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Message = "Here is the agenda for the weekly meeting."
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/idsmail.htm
------------------------------------------------------