Some hosters have a specific limit per day for e-mail delivery, so you should consult with your hosting partner beforehand if this limit is sufficient for your needs.
In this article we will explain the features of the premium plugin Smart Newsletter.
This extension can be found in our Shopware Store, the easiest way to find a specific plugin is the search-bar. Complete the order process and login to the backend of your store. Navigate to Configuration > Plugin manager > My purchases. You need to login and click the refresh button. Your new extension is now listed and can be installed. After installing the extension go to the menu entry installed and refresh. Activate the extension. Finally delete the cache under Settings > Cache/Performance > Clear Shop Cache and refresh the backend.
After you open the newsletter manager, you will see the newsletter overview. This table includes the main information of all newsletters, which are present in the shop and provides a couple of actions you can trigger directly from the table.
In contrast to the Standard Newsletter, the Intelligent Newsletter has a designer (3). The elements (1) can simply be dragged into the designer or onto the work platform (2) and placed .
With the HTML element you are able to add content to your newsletter. The extendable sidebar on the right of the window shows all available variables, e.g. to personalize the newsletter.
The following variables are available:
Examples of use:
Variable/Example | Explanation |
---|---|
{if $sUser.salutation == 'mr'}Mister{/if}{if $sUser.salutation == 'ms'}Miss{/if} | Use of the correct salutation |
{if $sUser.city !=""}How is it going in {$sUser.city}?{/if} | Use of the city in a sentence. The sentence will only be shown, if there is a value available for the city. |
You are registered to out newsletter with th e-mail address {$sUser.newsletter}. | Note for the registrated e-mail address, which receives the newsletter |
You can select from four different item types:
Using this element, you can use one or more links in the newsletter and set a description (1) and a link target (2) per link.
You can add individual vouchers, which are added to the newsletter automatically. You should make sure, that your voucher has enough free codes. You can also modify the text (1) for the voucher element, add an image (2) or a link (3).
Only one voucher box can be placed in the newsletter at a time; it is not possible to send several individual vouchers to one customer.
The suggest shows individual items depending on the recipient, based on their search and order history in your shop. Note that this feature only works for registered customers, not registered customers will see random items. You can define, how many products are suggested (1).
In addition you can also create your own elements for extending the newsletter.
In the tab "Analytics" you find a graph and a table showing different analytics regarding the newsletters you've sent.
The graph (2) shows the following values (1) for the newsletters you've sent, so you can compare, how your different newsletters performed:
Please note that the date always refers to the date on which the newsletter was sent. This is not the date on which orders were placed.
More details can be found in the lower section (3).
The administration tabs contains three tabs, which contain useful settings and information regarding the newsletters in Shopware.
Here you can create, edit and delete newsletter senders, which can be selected when creating a newsletter. You can set, which e-mail address is shown as the sender and which name will be displayed for this sender.
In this tab you can create (1) and delete (2) custom recipient groups for your newsletters. Only custom recipient groups will be shown here, but not the recipient groups based on the customer groups.
This lists every newsletter recipient of your shop. You can add (1) and delete (2) recipients or search for specific recipients. You can see, when the recipient confirmed the double opt-in and which newsletter is the last one the recipient received. By double clicking a recipient you can modify the e-mail address and recipient group. If you change the recipient group, you can only select the custom recipient groups.
You can configure a separate emailing using a differing smtp server by using this change in the cofig.php:
'newsletterMail' => array (
'name' => '',
'type' => 'smtp',
'auth' => 'login',
'username' => '',
'password' => '',
'host' => '',
'port' => '',
'ssl' => ''
),
Here a complete example:
<?php
return array(
'db' => array(
'username' => 'root',
'password' => 'root',
'dbname' => 'shopware',
'host' => 'localhost',
'port' => ''
),
'newsletterMail' => array (
'name' => '',
'type' => 'smtp',
'auth' => 'login',
'username' => '',
'password' => '',
'host' => '',
'port' => '',
'ssl' => ''
),
);
Please mind that you must not do empty elements in this because those will not automatically be changed to "NULL". You must either fill all elements or just leave out the option that does not get a value.
This setting only changes the emailing of the intelligent newsletter. All other components of the shops ware using the basic mailer settings.
The plugin allows you a time manages sending of your newsletter.
In the newsletter settings you find an option Send at (1). There you can easily define a time when you want to send the newsletter. For this you also have to activate ready for sending (2) for the newsletter to be send when calling myshop.de/backend/Newsletter/cron.
The newsletter will only be send when the defined date and time have been reached. If the date or time is in the future this newsletter will not be used by the cronjob.