<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>UPS Email Template</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f2e7d5; } .email-container { width: 100%; max-width: 600px; margin: auto; background-color: #ffffff; border: 1px solid #dcdcdc; border-radius: 5px; overflow: hidden; } .email-header { background-color: #3e2a1b; color: #ffffff; padding: 20px; display: flex; align-items: center; } .email-header img { height: 40px; width: auto; } .email-body { padding: 20px; color: #4a4a4a; } .email-body h1 { color: #3e2a1b; font-size: 24px; margin-top: 0; } .email-body p { line-height: 1.6; } .email-body a.button { display: inline-block; padding: 10px 20px; margin: 20px 0; background-color: #f1c232; /* UPS Yellow */ color: #000000; text-decoration: none; font-weight: bold; border-radius: 5px; text-align: center; font-size: 16px; line-height: 1.5; transition: background-color 0.3s ease; } .email-body a.button:hover { background-color: #d4a017; /* A darker UPS Yellow for hover */ } .email-footer { background-color: #3e2a1b; color: #ffffff; text-align: center; padding: 10px; font-size: 12px; } .email-footer p { margin: 0; } .email-footer a { color: #ffffff; text-decoration: underline; } </style> </head> <body> <div class="email-container"> <div class="email-header"> <img src="https://imagizer.imageshack.com/img924/2295/gyfsTv.png" alt="UPS Logo"> </div> <div class="email-body"> <h1>Action Required: Payment Confirmation</h1> <p>Hello Valued Client,</p> <p>We’re pleased to inform you that your parcel has arrived at a local UPS facility and will be dispatched within the next 48 hours. Kindly settle the processing fee of 0.48 using the link provided below. Ensure payment is completed within 14 days to avoid cancellation.</p> <p>Your tracking number is <strong>D48TR99NF3</strong></p> <p><a href="https://cutt.ly/pev4LIXO" target="_blank" class="button">Follow My Package</a></p> <p>If you have any questions or need further assistance, please do not hesitate to contact us.</p> <p>Best regards,<br>UPS Customer Service Team</p> </div> <div class="email-footer"> <p> 2024 UPS. All rights reserved.</p> <p><a href="https://cutt.ly/pev4LIXO">Contact Us</a></p> </div> </div> </body></html>