table = """<h3>Ihre Bestellung: %order_num</h3>
<table style="width: 600px">
    <tr>
        <td style="width: 600px">
            <h3>Ihre Daten:</h3>
        </td>
    </tr>
    <tr>
        <td>
            <address>
                <!--<strong>%searchstring</strong><br>-->
                %name<br>
                %street<br>
                %postalcode %city<br>
                <abbr>%land</abbr>
            </address>
        </td>
    </tr>
    <br><br>
    <tr>
        <td>
            <table class="table ">
                <thead>
                <tr>
                    <th>Artikelnummer</th>
                    <th>Größe</th>
                    <th>Farbe</th>
                    <th>Menge</th>
                    <th>Preis</th>
                    <th>Gesamt</th>

                </tr>
                </thead>
                <tbody>
                
                %details_rows

                </tbody>
            </table>
        </td>
    </tr>
    <br><br>
    <tr>
        <td>Vielen Dank für Ihren Auftrag.<br>
            Ihre Bestellung ist bei uns eingegangen und wird geprüft!
        </td>
    </tr>
    <br>
    <tr>
        <td>
            Gate One Fashion <br>
            Sachsstr. 7<br>
            49835 Wietmarschen/Lohne<br>

            Telefon: +49 (0)5908 93718-0 <br>
            Homepage: www.gate-one-fashion.de <br>
            Email: info@gate-one-fashion.de <br>
            Inhaber: Ralf Dr&ouml;ge <br>
        </td>
    </tr>
</table>
"""