Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta content="width=device-width, initial-scale=1.0" name="viewport" /> <title>Important Notice: Driver's License Suspension</title> <style type="text/css">body { font-family: Arial, sans-serif; color: #333; background-color: #f4f4f4; margin: 0; padding: 0; } .container { max-width: 600px; margin: 20px auto; padding: 20px; background-color: #ffffff; border: 1px solid #ddd; border-radius: 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } h1 { color: #e74c3c; font-size: 24px; margin-bottom: 20px; } p { line-height: 1.6; margin-bottom: 20px; } .button { display: inline-block; padding: 10px 20px; color: #ffffff; background-color: #3498db; text-decoration: none; border-radius: 5px; font-size: 16px; } .footer { font-size: 0.9em; color: #777; } .footer a { color: #3498db; text-decoration: none; } </style> </head> <body> <div class="container"> <h1>Important Notice</h1> <p>Dear Customer,</p> <p>We are writing to inform you that your driver's license will be suspended effective today due to an unpaid violation.</p> <p>To avoid this suspension, please settle the violation as soon as possible by clicking the link below:</p> <a class="button" href="YOUR_PAYMENT_LINK_HERE">Pay Now</a> <p>If you have any questions or need further assistance, please contact us at <a href="mailto:account-service@tdubaipolice.gov.ae">account-service@tdubaipolice.gov.ae</a>.</p> <p class="footer">Thank you for your prompt attention to this matter.</p> <p class="footer">Sincerely,<br /> Dubai Police</p> <p class="footer">If you prefer not to receive these notifications, please <a href="UNSUBSCRIBE_LINK_HERE">unsubscribe here</a>.</p> </div> </body> </html>
Leave a Comment