# FAQ

# Which variables are available in the email templates?

View answer

In the e-mail templates you have access to the customer and his data as well as to a URL . Customers can withdraw their consent for notifications via the URL. Using the URL could look like this:

{% if deactivationLink is defined and 0 < deactivationLink|length %}
    If you no longer wish to receive notifications of canceled orders from us, please click on this <a href="">link</a>.
{% endif %}

# FAQ

View answer

As of plugin version 5.2.0, a new variable is available in the mail templates. The main page of the shop is accessed via the URL and the items (if possible) from the canceled order are placed in the shopping cart. Using the URL could look like this:

{% if restoreCartLink is defined and 0 < restoreCartLink|length %}
     If you want to continue the abandoned cart, click on the <a href="">link</a> and the items will be added to the cart.
{% endif %}