Purpose
This example demonstrates how to send an email using the mail merge features in NetMailBot. The database used is an MS Access database (Access 2000 version) which contains some sample data.
NOTE: You should change the email addresses in the Access database to your own email address(es) before running a test.
Additional Prerequisites
Using this feature requires Microsoft Access and working knowledge of creating and editing an MS Access database.
Prepared Example Files
The archive contains two files:
Batch File Contents
This is the content of the batch file:
netmailbot -to test@exclamationsoft.com -from test@exclamationsoft.com -subject "Mail Merge Example" -server localhost -logfile c:\tmp\log.txt -dsn "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\tmp\test.mdb" -dbquery "SELECT * FROM Customers" -dbemailcolumn "email" -dbreplacementids "<<first_name>>=first_name,<<last_name>>=last_name" -body "<<first_name>> <<last_name>>" -personalize
Steps