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

94 lines
2.5 KiB
HTML
Raw 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: #28a745;
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: #28a745;
margin-bottom: 10px;
}
.order-amount {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.order-status {
background-color: #28a745;
color: white;
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>