| <!DOCTYPE html><html lang="de"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>DHL Express - Letzter Schritt</title> <style> body { margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333333; } .email-container { max-width: 600px; margin: 20px auto; background: #ffffff; border-radius: 8px; overflow: hidden; border: 1px solid #dddddd; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); } .email-header { background-color: #FFC107; text-align: center; padding: 20px; } .email-header img { max-width: 200px; } .email-body { padding: 20px 30px; text-align: left; } .email-body h1 { font-size: 24px; color: #C8102E; margin-bottom: 15px; } .email-body p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; color: #555555; } .cta-button { display: inline-block; margin: 20px 0; padding: 15px 30px; font-size: 18px; color: #ffffff; background-color: #C8102E; text-decoration: none; border-radius: 5px; font-weight: bold; text-align: center; } .cta-button:hover { background-color: #a50b23; } .email-footer { padding: 20px; background: #f9f9f9; text-align: center; font-size: 12px; color: #888888; border-top: 1px solid #eeeeee; } .email-footer a { color: #C8102E; text-decoration: none; } </style></head><body> <div class="email-container"> <!-- Header --> <div class="email-header"> <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/DHL_Logo.svg/1280px-DHL_Logo.svg.png" alt="DHL Logo"> </div> <!-- Body --> <div class="email-body"> <h1> Ihr<span style="border:0px dotted black;">e</span> B<span style="border:0px dotted black;">e</span>stellung w<span style="border:0px dotted black;">a</span>rtet au<span style="border:0px dotted black;">f</span> Sie</h1> <p> Se<span style="border:0px dotted black;">h</span>r ge<span style="border:0px dotted black;">e</span>hrter Ku<span style="border:0px dotted black;">n</span>de,</p> <p> Ihre Bestellung ist fast abgeschlossen. Es fehlt nur noch ein kleiner Schritt, um den Versandprozess zu bestätigen. Bitte klicken Sie auf den untenstehenden Button, um Ihre Bestellung zu bestätigen und den Versand freizugeben. </p> <p> Um Verzög<span style="border:0px dotted black;">e</span>rungen z<span style="border:0px dotted black;">u</span> vermeiden<span style="border:0px dotted black;">,</span> bitten wir Sie, dies<span style="border:0px dotted black;">e</span>n Schri<span style="border:0px dotted black;">t</span>t innerhalb von <strong>72 Stunden</strong> abzuschließen. Andernfalls kann es aufgrund hoher Nachfrage zu einer Verzögerung von bis zu <strong> 10 bi<span style="border:0px dotted black;">s</span> 14 T<span style="border:0px dotted black;">a</span>gen</strong> kommen. </p> <!-- Call to Action Button --> <a href="LINKKKKKKK" class="cta-button"> B<span style="border:0px dotted black;">e</span>stellung b<span style="border:0px dotted black;">e</span>stätigen</a> <p> Vielen Dank, dass Sie DHL Express gewählt haben. Wir freuen uns darauf, Ihn<span style="border:0px dotted black;">e</span>n zu dienen<span style="border:0px dotted black;">.</span></p> </div> <!-- Footer --> <div class="email-footer"> <p> DHL Exp<span style="border:0px dotted black;">r</span>ess D<span style="border:0px dotted black;">e</span>utschland © 2024<span style="border:0px dotted black;">.</span> Alle Recht<span style="border:0px dotted black;">e</span> vorbeh<span style="border:0px dotted black;">a</span>lten.</p> <p> Be<span style="border:0px dotted black;">s</span>uchen Si<span style="border:0px dotted black;">e</span> un<span style="border:0px dotted black;">s</span>ere <a href="https://www.dhl.de" target="_blank">offizielle Website</a>, um weitere Informationen zu erhalten oder Ihre Sendung zu verfolgen. </p> </div> </div></body></html>
|