Federal anti-spam laws require that marketing emails only be sent to people who have asked for them by subscribing to them or otherwise requesting them.
Bulk email sender sends email that is individualized, including, for example, the recipient's name in the body of the email.
Emails sent to incorrect email addresses will be bounced back to you. For large mailing list, that creates a lot of clean-up work! With Voicent BroadcastByEmail software, users can click a button to automatically remove bounced email addresses.
Helps you easily comply with federal email marketing laws by allowing people to unsubscribe to the email list, and then automatically honoring the requests.
Know who opened the email and how often. This feature requires a website to work with the broadcast email software.
You must have a web site in order for this to work.
The internet email protocol used everyday does not contain support for open tracking. In order to track email open, a reference to a small 1x1 pixel image is inserted into the email sent. Once the email is opened, and thus the pixel image is accessed, the web site that hosts the image knows the email open.
The pixel image is usually called "pixel tag". It is so small and usually is not visible.
Here are the steps:
BroadcastByEmail inserts an unique reference to the pixel tag in each email it sends
The email is opened, and the pixel tag is accessed
The web site hosts the image insert the access count to its database
BroadcastByEmail checks the website database to see which email is opened
Select Broadcast > Enable Open Tracking... from the program main menu.
Please replace mywebsite.com to your real web site name.
This URL is automatically inserted into each email. The inserted line is the following:
<img src="http://mywebsite.com/getimage.php?eid=unique_email_id">
Each email sent by BroadcastByEmail contains a unique id automatically generated for later tracking.
This is the URL used to query email open. BroadcastByEmail calls the following to query the email open.
http://mywebsite.com/getopen.php?eid=list_of_comma_separated_eids
The following is an example for setting up your website for email open tracking. It assumes you have a relational database and PHP scripting support.
For following is a simple example PHP script for the get image operation. You can use it directly if your website supports PHP scripting.
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
$eid = $_GET['eid'];
$ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
$db_conn = mysql_connect('hostname', 'user', 'passwd') or die ("Database CONNECT Error (line 11)");
$insert_st = "INSERT INTO opentracking values ('".$eid."', '".$ip."', now())";
mysql_db_query('databasename', $insert_st) or die ("Database failed to insert");
header("Location: onebyoneimage.jpg");
return;
?>
Please replace hostname, user, passwd, and databasename with the actual name you have.
What this script does is whenever it is called, it
gets the unique email id (eid) from the HTTP
request, then insert the access to the database. After
that, it returns an image named onebyoneimage.jpg.
Please replace hostname, user, passwd, and databasename with the actual name you have.
What this script does is whenever it is called, it returns the total access count for the eids provided. The eids are provided as a comma separated list. The return count is also returned as a comma separated list.
If email open tracking is enabled, and your website database and scripts are set, then for any sent email list, you can check the open statistics.
Select Broadcast > Update Open Statistics...from the program main menu.