Add simple_withdrawalbutton PrestaShop module
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
/** Silence is golden. */
|
||||
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Confirmation of receipt of your withdrawal</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Hello {customer_name},</p>
|
||||
|
||||
<p>We confirm receipt of your withdrawal declaration.</p>
|
||||
|
||||
<p><strong>Received:</strong><br>{submitted_at}</p>
|
||||
<p><strong>Order number / order reference:</strong><br>{order_reference}</p>
|
||||
<p><strong>Withdrawal concerns:</strong><br>{scope_label}</p>
|
||||
<p><strong>Affected items / quantities:</strong><br>{withdrawal_items_text}</p>
|
||||
<p><strong>Your message / note:</strong><br>{message}</p>
|
||||
|
||||
<p>This message only confirms receipt of your withdrawal declaration. Further processing and review will follow separately.</p>
|
||||
|
||||
<p>Kind regards<br>{shop_name}</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,23 @@
|
||||
Hello {customer_name},
|
||||
|
||||
We confirm receipt of your withdrawal declaration.
|
||||
|
||||
Received:
|
||||
{submitted_at}
|
||||
|
||||
Order number / order reference:
|
||||
{order_reference}
|
||||
|
||||
Withdrawal concerns:
|
||||
{scope_label}
|
||||
|
||||
Affected items / quantities:
|
||||
{withdrawal_items_text}
|
||||
|
||||
Your message / note:
|
||||
{message}
|
||||
|
||||
This message only confirms receipt of your withdrawal declaration. Further processing and review will follow separately.
|
||||
|
||||
Kind regards
|
||||
{shop_name}
|
||||
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>New withdrawal declaration</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>A new withdrawal declaration has been received.</p>
|
||||
|
||||
<p>
|
||||
<strong>ID:</strong> {id_withdrawal_request}<br>
|
||||
<strong>Received:</strong> {submitted_at}<br>
|
||||
<strong>Order number / order reference:</strong> {order_reference}<br>
|
||||
<strong>Name:</strong> {customer_name}<br>
|
||||
<strong>Email:</strong> {customer_email}<br>
|
||||
<strong>Withdrawal concerns:</strong> {scope_label}
|
||||
</p>
|
||||
|
||||
<p><strong>Affected items / quantities:</strong><br>{withdrawal_items_text}</p>
|
||||
<p><strong>Message / note:</strong><br>{message}</p>
|
||||
|
||||
<p>Back office: <a href="{admin_link}">{admin_link}</a></p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,17 @@
|
||||
A new withdrawal declaration has been received.
|
||||
|
||||
ID: {id_withdrawal_request}
|
||||
Received: {submitted_at}
|
||||
Order number / order reference: {order_reference}
|
||||
Name: {customer_name}
|
||||
Email: {customer_email}
|
||||
Withdrawal concerns: {scope_label}
|
||||
|
||||
Affected items / quantities:
|
||||
{withdrawal_items_text}
|
||||
|
||||
Message / note:
|
||||
{message}
|
||||
|
||||
Back office:
|
||||
{admin_link}
|
||||
Reference in New Issue
Block a user