Procedure Name | Type | Description |
(Declarations) | Declarations | Declarations and private variables for the COutlookMail class. |
AppNameSpace | Property | Get a handle to the current instance of the Outlook NameSpace. |
AppOutlook | Property | Get a handle to the current instance of Outlook. |
Delimiter | Property | Set the value of the Delimiter Property. |
Class_Initialize | Initialize | Executed when the class initializes. Sets default poperty values. |
SendMail | Method | Sends a message using the following properties:
|
StartOutlook | Method | Starts an instance of Outlook. |
Class_Terminate | Terminate | Clean up class variables opened for Outlook. |
CloseOutlook | Method | Close an instance of Outlook; don't call this if you want to leave Outlook open. |
' Example of the COutlookMail class ' ' To use this example: ' 1. Create a new form ' 2. Create a command button named cmdSendMail ' 3. Create a new check box named chkDisplay ' 4. Create text boxes named ' txtRecipients ' txtCC ' txtBCC ' txtSubject ' txtbody ' txtAttachments Private Sub cmdSendMail_Click() Dim clsCOutlookMail As COutlookMail Dim fOK As Boolean ' Initialize Address Book class and connect to Outlook Set clsCOutlookMail = New COutlookMail clsCOutlookMail.StartOutlook fOK = clsCOutlookMail.SendMail(Nz(Me.txtRecipients), Nz(Me.txtCC), Nz(Me.txtBCC), Nz(Me.txtSubject), Nz(Me.txtBody), "", Nz(Me.txtAttachments), olImportanceNormal, Me.chkDisplay) Set clsCOutlookMail = Nothing MsgBox "Email sent successfully: " & fOK End Sub
The source code in Total Visual Sourcebook includes modules and classes for Microsoft Access, Visual Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily add this professionally written, tested, and documented royalty-free code into your applications to simplify your application development efforts.
Total Visual SourceBook is written for the needs of a developer using a source code library covering the many challenges you face. Countless developers over the years have told us they learned some or much of their development skills and tricks from our code. You can too!
Supports Access/Office 2016, 2013, 2010 and 2007, and Visual Basic 6.0!
"The code is exactly how I would like to write code and the algorithms used are very efficient and well-documented."
Van T. Dinh, Microsoft MVP