MAPI Call to Exchange from Notes1

The code below represents a simple MAPI call to Exchange from Notes; workflow processes are initiated from Notes and Exchange public folders are used as a 'shared' repository to track document processes.


Dim objSession As Variant
Dim olNameSpace As Variant
Dim objMessage As Variant

Set objSession = CreateObject("Outlook.Application")

Set olNameSpace = objSession.GetNameSpace("MAPI")

olNameSpace.Logon

Set objMessage = objSession.CreateItem(0)
objMessage.To = sendto$
objMessage.CC = "Exchange Public Folder Name"
objMessage.Subject = "Subject here..."
objMessage.Body = "Some text and URL's here..."

objMessage.Send

Set objSession = Nothing

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.