From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/website_sale/data/mail_template_data.xml | 110 ++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 addons/website_sale/data/mail_template_data.xml (limited to 'addons/website_sale/data/mail_template_data.xml') diff --git a/addons/website_sale/data/mail_template_data.xml b/addons/website_sale/data/mail_template_data.xml new file mode 100644 index 00000000..f6317733 --- /dev/null +++ b/addons/website_sale/data/mail_template_data.xml @@ -0,0 +1,110 @@ + + + + + Sales Order: Cart Recovery Email + + You left items in your cart! + ${(object.user_id.email_formatted or user.email_formatted or '') | safe} + ${object.partner_id.id} + + + + +
+ + + + + + + + + + + + + + + +
+ + + +
+ % set company = object.company_id or object.user_id.company_id or user.company_id + Your Cart
+ + ${object.name} + +
+ ${company.name} +
+
+
+
+ + + +
+

THERE'S SOMETHING IN YOUR CART.

+ Would you like to complete your purchase?

+ % if object.order_line: + % for line in object.website_order_line: +
+ + + + + + +
+ Product image + + ${line.product_id.display_name}
${line.name} +
+ ${(line.product_uom_qty) | int} ${(line.product_uom.name)} +
+ % endfor +
+ % endif + +
Thank you for shopping with ${company.name}!
+
+
+
+
+ + + +
+ ${company.name} +
+ ${company.phone} + % if company.email + | ${company.email} + % endif + % if company.website + | ${company.website} + % endif +
+
+
+ + +
+ Powered by Odoo +
+
+
+ ${object.partner_id.lang} + +
+
+
-- cgit v1.2.3