ishop/order-success-email-template.html
2025-08-19 11:52:31 +08:00

94 lines
2.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订单确认</title>
<style>
body {
margin: 0;
padding: 20px;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
.container {
max-width: 400px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
overflow: hidden;
}
.header {
background-color: #667eea;
color: white;
padding: 20px;
text-align: center;
}
.header h1 {
margin: 0;
font-size: 20px;
}
.content {
padding: 20px;
}
.order-info {
text-align: center;
margin-bottom: 20px;
}
.order-number {
font-size: 16px;
font-weight: bold;
color: #667eea;
margin-bottom: 10px;
}
.order-amount {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.order-status {
background-color: #ffc107;
color: #212529;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
display: inline-block;
}
.footer {
background-color: #f8f9fa;
padding: 15px;
text-align: center;
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>订单确认成功</h1>
</div>
<div class="content">
<p>亲爱的 <strong>{{customerName}}</strong></p>
<p>您的订单已成功提交,请及时完成支付。</p>
<div class="order-info">
<div class="order-number">订单号:{{orderNumber}}</div>
<div class="order-amount">${{totalAmount}} USDT</div>
<div class="order-status">等待支付</div>
</div>
<p>感谢您选择我们的服务!</p>
</div>
<div class="footer">
感谢您的选择!
</div>
</div>
</body>
</html>