25 lines
742 B
HTML
25 lines
742 B
HTML
<!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>
|