Search Clear
Look for messages: Allow eMill to receive messages by setting up an incoming queue. This represents the mail server on which you are receiving your emails. Add an incoming queue using menu Tools -> Options -> Incoming Queues (see the help for details about the queue settings). You can configure multiple incoming queues.
Download messages: Indicate which messages have to be downloaded within eMill. Go to Project -> Incoming Messages, click on the Download Tab. You can either use the wizard to create a downloading condition by clicking on Add or implement the Mailing_OnAcceptMail event.
Process messages: Tell eMill how to process the downloaded messages (update a record in a date source, automatic response,...). Go to Project -> Incoming Messages, click on the General Tab. You can either use the wizard to create a rule by clicking on Add or implement the Mailing_OnReceiveMail event.
Subscribe to an incoming queue: When publishing your project, select the incoming queue where you will receive emails regarding this particular project at the bottom of the 'Publish Window'. You can also subscribe to an incoming queue in the Queues by right clicking on a project, selecting Properties and Incoming Queues.
For more details on this feature, please refer to the Incoming Messages management section at http://www.emill.net/196.html.
Advanced users: For more examples on how to process incoming emails using global script, see the 'Replies' sample by clicking on File -> Open Sample.
Insert your text or image in the HTML editor where you want it to appear. Then, switch to the html source view and enter the following script (in blue) around your text or image:E.g 1: The blue text is displayed if the receiver's field 'Color' is equal to 'Blue'. In all other cases, none text are displayed.
<% If Record.Fields("Color") = "Blue" Then %> <font color="#0000FF">Some text in blue</font> <% End If %>
E.g. 2: The blue text is displayed if the receiver's field 'Color' is equal to 'Blue'. In all other cases, the red text is displayed.
<% If Record.Fields("Color") = "Blue" Then %> <font color="#0000FF">Some text in blue</font> <% Else %> <font color="#FF0000>Some text in red</font> <% End If %>
E.g. 3: The text on the car is displayed if the receiver's field 'AdType' is equal to 'Cars' or 'Trucks'. The text on the hammer is displayed if the receiver's field 'AdType' is equal to 'Tools'. In all other cases, none text are displayed.
<% If Record.Fields("AdType") = "Cars" Or Record.Fields("AdType") = "Trucks" Then %> You can win this great car <img src="car.jpg"> <% ElseIf Record.Fields("AdType") = "Tools" Then %> You can win this cool hammer <img src="hammer.jpg"> <% End If %>
Sub Mail_OnStartRender() If Record.Fields("Language") = "French" Then Mail.Subject = "eMill v2.3.19 est maintenant disponible !" Else Mail.Subject = "eMill v2.3.19 is now available!" End If End Sub
Note: You will probably have to restart your computer for changes to take effect.
Choosing between the 2 types of SMSCs will mainly depends on the price and the way you want to use the SMS channel (volume, send & receive SMS,...).
A table with the full features list of both eMill editions is available at http://www.emill.net/67.html.
The eMill Service Provider edition includes all eMill Enterprise features more an accounting module, a credit management module, a private-labeled web interface and 20 web user licenses.
Note that eMill includes a tool called 'Opt-In Management' that creates for you a subscription form as well as the message rules to process automatically subscriptions and unsubscriptions. To use this tool, create a mailing project, select the receivers list in the project tree and click on the Tools -> Opt-In Management menu.
Yes, eMill allows you to create HTML emails using CSS either in a <style> tag, inline (i.e.: <table style="...">) or in an attached style sheet.
The main concern in using CSS is to know if it will be correctly displayed by your receivers' mail clients:
To enable the PDF converter, select an HTML content in the eMill project tree, click on the 'View -> Properties' menu and check the 'Convert to PDF format' option at the bottom of the window.
If this header is included in an email, the mail client displays an unsubscribe button within its interface. It should incite a receiver to click on it to unsubscribe instead of reporting your message as a spam (which is a widely used unsubscribe technique). Here is the way Windows Live Mail displays it:
Note that this technique only works with mail clients supporting this standard. Moreover, some mail clients may apply restrictions. For instance, Windows Live Mail only displays the button if the email sender is in the receiver's safe list.
With eMill, you are able to take advantage of this technique and add the header to the emails you send. You just need to insert the script below in your email content (wherever you want):
Mail.Headers.Add "List-Unsubscribe", "<UNSUBSCRIBE_LINK>"
Replace UNSUBSCRIBE_LINK by your usual unsubscribe link. It can have 2 formats:
For more details on this feature, please run the webcast 'Creating an emailing project with conditional contents'.
Sub Mail_OnStartRender() If Record.Fields("Language") = "French" Then Mail.From ="ventes@emilltest.com" Else Mail.From = "sales@emilltest.com" End If End Sub
Note that if you wish to edit your list in eMill or update it automatically, it is recommended to import your Excel contacts in eMill and not to connect eMill to your Excel file. Indeed, as Excel is not a database application, some actions may be difficult to perform and could corrupt your file. To import contacts, select a receivers list in the eMill project tree and click on the File -> Import addresses.
Note that the connection to SQL Server databases is only available with the eMill Enterprise and eMill Service Provider editions.
Note that the connection to Oracle databases is only available with the eMill Enterprise and eMill Service Provider editions.
Under Tables/Queries, the lists available in your Outlook are displayed. The first lists (Contact, ContactGroups, Contacts, Emails) are automatically created by Outlook and allow you to retrieve all your Outlook contacts.
The distribution lists you have created are displayed as GroupList_name. For instance, in the screenshot above, the distribution lists available are: Client, ContactPro, Parents. To use a distribution list, select it under Tables/Queries and click on 'Next'.
Note that eMill does not allow you to select a specific folder of your Outlook contacts. Therefore, if you don't want to create a list with all your Outlook contacts, we recommend you to create distribution lists with Outlook before starting a mailing project with eMill.
Under Tables/Queries, a list of the sheets available in your Excel file is displayed (here, there are 3 sheets: Customers, Resellers and Suppliers). Just select the sheet you want to use and click on 'Next'.
Note that if you define a print area in your Excel sheet, it will be displayed as a new sheet under Tables/Queries with the following name: 'Sheet_name$Print_area.
If you have a company SMTP server available, we advise you to use it. It allows you to have a full control on the campaign sending and to implement any changes if necessary.
Otherwise, you can use your Internet Service Provider (ISP) SMTP server. This method is easy and fast to configure. However, some ISPs may restrict the number of messages you are able to send. Please contact them to know what is their policy.
Finally, you can use the eMill built-in SMTP server. Note that some restrictions may apply to the use of this method.
A: In order to provide you with detailed information on this key issue, the eMill division has written and published a white paper called "How to Optimize Email Deliverability?".
This white paper gives email marketers a detailed list of the different issues you should be aware of: subscribe and unsubscribe processes, list building, bounces, communication strategies, email creation, anti-spam filters, delivery monitoring, blacklists, spam complaints, whitelists, authentication methods, accreditation services, reputation scores, sending techniques, server configuration...
Read "How to Optimize Email Deliverability?" in PDF
The web address is composed of the following elements:
The web address will have a different format according to the operating system of the computer where the eMill Server is installed (in red, the elements to modify):
http://domain_name_or_public_ip:8081/Tracking.asp?Account=eMill_client_account_name
http://domain_name_or_public_ip:8081/eMillWeb/Tracking.asp?Account=eMill_client_account_name
If you wish to give an access to the tracking statistics of a specific project, the web address will have the following format:
http://domain_name_or_public_ip:8081/TrackingStatsGeneral.asp?ProjectUrl=eMill_server_name%5CeMill_project_name
http://domain_name_or_public_ip:8081/eMillWeb/TrackingStatsGeneral.asp?ProjectUrl=eMill_server_name%5CeMill_project_name
Note that if the eMill server name or the eMill project name contains special characters or spaces, they must be encodedin the URL.
In order to allow you to take advantage of the message tracking module with the eMill Professional edition, we offer an hosted tracking service. This means that you just need to pay a subscription fee every 6 month or every year to get access to the message tracking features (opens, clicks, export of results) without the need to install any module. To find out more about this service pricing, please refer to the 'Pricing' page.
Note that, in the eMill Enterprise editions, the message tracking is available as an independent module. This means that you just need to install it on your own computer, then, you can use it indefinitely without paying any subscription fees.
The message tracking is available in 2 different package according to the eMill Edition you wish to purchase.
The eMill incoming messages processing module allows you to manage efficiently and easily soft bounces and hard bounces. In order to process bounces, eMill is going to download these messages from you mail client, then, it will run the actions defined by the eMill user: report bounces, delete a record from the database, update a record in the database, etc.
To set up the automatic management of bounces, we invite you to open the eMill help file (press F1 when eMill is launched) and to go to the Knowledge base -> Managing DNSs or Bounces menu. This article gives you a step-by-step approach to process bounces.