Sending Microsoft Access Email Blasts Programmatically (VBA)
The add-in Wizard in Total Access Emailer lets you
interactively create the email blasts you want to send from
Microsoft Access.
In the Professional Version, Total Access Emailer
offers a VBA programmatic interface that lets you run these
email blasts from your MS Access code. This can be tied to an event (for
instance, a
button click), a macro via the RunCode action, or within
your other VBA processes.
The nice thing is the complexity of creating, specifying
all the options, and
testing/previewing the email blast can be done
interactively through the add-in, and you simply launch it
in your code.
Contents
Sending an Email Blast from Microsoft
Access
By adding Total Access Emailer's royalty-free runtime distribution file
as a library reference to your project, you can invoke its procedure. Any email blast created by the add-in can be added to your
application with a simple function call. Each email blast is
given a number. In this example, email blast #25 is sent:
strError = TotalAccessEmailer(25, False, "", "", True, True)
That's all you need to add the sophisticated email
features of Total Access Emailer into your applications. The
user interface can be completely hidden so your users don't
even realize Total Access Emailer is running in the
background. You control your user's experience.
Procedure Definition
Public Function TotalAccessEmailer( _
lngEmailID As Long, _
fRestartBlast As Boolean, _
strDisplayType As String, _
strDisplayTitle As String, _
fShowResults As Boolean, _
fShowErrors As Boolean, _
Optional strEmailTbl As String, _
Optional strOptionsTbl As String, _
Optional strEmbedTbl As String) _
As String
Procedure Parameters
These parameters are
available to customize how your email blast is sent. You can choose to have
Total Access Emailer display its progress screens with your
title, or hide it completely from your user.
|
|
| lngEmailID |
The ID of the email blast to send |
| fRestartBlast |
True to restart the email blast if it stopped,
or False to start it from the beginning. |
| strDisplayType |
Choose whether and how to display the progress
of the email blast to the user (form or status bar)
|
| strDisplayTitle |
The title for the display form and messages to
avoid "Total Access Emailer" from appearing. |
| fShowResults |
True shows the email blast results in a message
box when completed. |
| fShowErrors |
True displays the errors table if errors are
encountered. False still generates the errors table,
but does not display it. |
Optional Parameters
By default, the function uses the email blasts stored in
the three tables used by the add-in. When you add email
blasts to your application, you may not want users to be
able to edit them with their add-in. By renaming these
tables, you can ensure they are not modified. Simply pass
the names of your tables as the optional parameters and the
function looks there for the email blast specifications.
|
|
| strEmailTbl |
The table in the database containing the email
blast settings. The default value is "usysTEmailerSettings". |
| strOptionsTbl |
The table in the database containing the Send
and SMTP options. The default value is "usysTEmailerOptions". |
| strEmbedTbl |
The table in the database containing the
Embedded Object information. The default value is "usysTEmailerEmbedded". |
Return Value
The function returns a blank string if it's successful or an error string
if there's a problem. You can choose to display that to the user or hide it
and process it yourself.
Previewing an Email Blast
Similar to the TotalAccessEmailer function, the Access
2010 and X.6 versions introduced a new function to let you
preview an email blast by sending the email to an email
address you specify rather than the recipient in your data
source. This lets you or your users verify the emails are
correct before actually sending them. This is similar to the
Preview feature in the add-in.
Email Preview Function
A function called TotalAccessEmailer_Preview is similar
to the TotalAccessEmailer function described above with the
addition of two parameters:
|
|
| strEmailAddress |
The email address to send the
emails. This override the TO email address of the emails you are
sending. (Any Cc and Bcc addresses are ignored during preview). |
| lngRecords |
Number of records to process |
Sending One Email
Total Access Emailer 2010 and the X.6 versions offer a
function to let you send a single email without creating
a pre-defined email blast. It lets you send an email
directly from your VBA code while using the SMTP server
settings you've already specified in Total Access Emailer.
It doesn't have all the features of an email blast such as
attaching filtered reports, but it does support the basics
of sending a text or HTML email.
Procedure Definition
Public Function TotalAccessEmailer_SendOne( _
strFrom As String, _
strTO As String, _
strCC As String, _
strBCC As String, _
strSubject As String, _
strMessageText As String, _
strMessageHTML As String, _
Optional strHTMLFile As String, _
Optional strAttachments As String = "", _
Optional intPriority As Integer = 3, _
Optional intSensitivity As Integer = 0, _
Optional fReadReceipt As Boolean = False, _
Optional strOptionsTbl As String = "usysTEmailerOptions") _
As String
Parameters
The parameters let you create standard text and HTML
emails with attachments, and message status
- Email addresses for From, To, Cc, Bcc
- Subject
- Text message
- HTML message or HTML message from a saved HTML file.
If the HTML file references graphics in its own folder,
those graphic files will be automatically included in
the message.
- Files on disk to attach
- Message priority, sensitivity, read receipt
With the TotalAccessEmailer_SendOne function, you can
send emails with more options and control than the built in
DoCmd.SendObject method.
Setting SMTP Logon and
Firewall Passwords
All the SMTP settings are saved in the usysTEmailerOptions
table (or a table you specify) in your database. This can be
easily changed by the Total Access Emailer add-in under
Options. There are two password values for the logon and
firewall which are encrypted. You can't simply edit the
table.
When you deploy your application with Total Access
Emailer to others, they will probably not have the add-in or
the ability to run it against your application. They may
also not want to tell you their passwords. Total Access
Emailer provides a simple TotalAccessEmailer_SetPasswords
function to overwrite the passwords saved in the table.
Validating SMTP
Settings
The TotalAccessEmailer_SMTP_IsValid function validates
the saved SMTP settings without sending an email blast. The
function returns an empty string if everything is okay, or
an error string describing the problem. This is useful to
check before launching an email blast or in conjunction with
user input of their SMTP settings.
Interactive
VBA Code Generator
The Code Generator from the Total Access Emailer add-in lets you
interactively select options and build the VBA
code to run the currently selected email blast
in your application. You can choose to run or preview the email blast. Simply set your options and
paste the code into your module to send and/or preview your email blast.

Adding the Total Access Emailer Library
Reference to Email from Microsoft Access Modules
To use the Total Access Emailer function, add Total
Access Emailer as a library reference from your VBA Tools, Reference
menu:

The Total Access Emailer library includes runtime distribution
rights so you can distribute your Microsoft Access application using
Total Access Emailer royalty-free to non-owners of Total Access
Emailer. This example shows the version for Microsoft Access 2010. Versions are
also available to support Microsoft Access 2007, 2003, 2002, 2000,
and 97.
Table Driven Email Systems
With the programmatic interface, you can easily add table driven emailing
systems within your Microsoft Access applications. More details in
Creating a Continuous Email Service in
Microsoft Access.
More about Microsoft Access Email