Das Plugin xt_email_extras erweitert die in der send_order-E-Mail und xt_second_email verwendaren Daten um


Beispiele Verwendung


Produkte-Bilder, -Links und -Beschreibungen, im folgenden enthält $order_values.db_data sämtliche Produkt-Daten aus der Datenbank-Tabelle xt_product inklusive der Beschreibungen

{foreach name=products item=order_values from=$order_products}
<a href="{$order_values.products_link} target="_blank"> <img src="{img img=$order_values.products_image type=m_thumb path_only=true}"alt="{$order_values.products_name}" /></a><br />
{$order_values.db_data.products_short_description}<br />
nur noch {$order_values.db_data.products_quantity} Stück vorhanden<br />
{/foreach}

 

Gesamtgewicht der Bestellung

{txt key=TEXT_SHIPPING_STATUS} {$order_values.products_shippingtime}

 

Lieferzeit eines Produktes

{txt key=TEXT_TOTAL_WEIGHT_NET_EMAIL} {$order_data.total_weight.plain}
{txt key=TEXT_TOTAL_WEIGHT_NET_EMAIL} {$order_data.total_weight.formated}

 

Gutschein-Daten

{$coupon_data.code} {$coupon_data.redeem_amount}

 

Bestand nach Bestellung, zur Verwendung z.B. in xt_second_email an den Shopbetreiber

{foreach name=products item=order_values from=$order_products}
<a href="{$order_values.products_link} target="_blank"> REST-BESTAND {$order_values.db_data.products_quantity}</a><br />
{/foreach}