Purpose
This example demonstrates how to send a Newsletter email to a list of BCC (Blind Carbon Copy) recipients from a simple text file of "Bcc:" recipeints. While the topic of this overall section is importing email addresses and other data from a database for use with NetMailBot, we wanted to include in this "Mass Mailings" topic an example that implements a mass email campaign without the use of database connectivity.
Prepared Example Files
The archive contains two files:
Batch File Contents
This is the content of the batch file:
NetMailBot -to test@test.com -from test@test.com -server smtp.test.com -bcclist "bcclist.txt" -subject "Here is your Monthy Newsletter" -bodyfile "Newsletter.txt" -logfile "logfile.txt" -debug
Steps