Type
magento2-module
Sailthru Module for Magento
magento2-module
None
None
None
None
None
composer require sailthru/sailthru-magento2-extension
bin/magento module:enable Sailthru_MageSail
bin/magento setup:upgrade
(Depending on Magento mode, you may need to run magento setup:di:compile
)Note: If sync'ing variant products with no visible individual URL, you should enable "Preserve Fragments" in Sailthru here.
The Sailthru MageSail module comes ready to use Sailthru's new PersonalizeJs javascript. To add page-tracking and gather onsite data like pageviews and clicks:
Please contact Sailthru to learn more about and enable Site Personalization Manager.
Declare new transactional email template in ./etc/template_config.xml
file that can be created within any module.
Each template definition in ./etc/template_config.xml
has four required parameters that are defined in ./etc/template_list.xsd
file.
Required parameters are:
1. id - transactional email template identifier in Magento 2
2. name - template title which will be displayed in Admin Panel -> Stores -> Configuration -> Sailthru -> Transactionals -> General Transactionals
dropdown list
3. custom_template_source - Core Config Path
to native Magento 2 transactional email template ID value. Is utilized when custom email template overrides default Magento 2 email template
4. sort_order - template sort order
After updating the ./etc/template_config.xml
file run php bin/magento cache:clean config
to clean Config cache.
To extend or change structure of a transactional email templates override config file use ./etc/template_list.xsd
file.
Sailthru Magento 2 extension utilizes standard Magento queueing functionality.
$ php bin/magento queue:consumers:start sailthru.email.send.consumer.db
OR
$ php bin/magento queue:consumers:start sailthru.email.send.consumer.amqp
Instead of standard database based queue broker RabbitMQ can be used
Refer to Magento Guide: RabittMQ Setup