Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
templates
/
front
/
product
/
mail
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/templates/front/product/mail/mail_product.html.twig
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <title>Formulaire de commande</title> <style> .table>thead>tr>th { vertical-align: bottom; background-color:#502811; color:#fff; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { padding: 8px; line-height: 1.42857143; vertical-align: top; } .table-striped tbody tr:nth-of-type(odd) { background-color: #ddd; } .table td, .table th { vertical-align: top; border-top: 1px solid #dee2e6; text-transform: capitalize; } .total{ color:#502811; padding: 5px; border: 1px solid #502811; background: transparent; width:150px; text-align:center; } .total h3{ margin:auto; } </style> </head> <body> <div style='background-color:#c11823; padding:20px;margin:15px;font-family: "Poppins", sans-serif;'> <div style="background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(245, 192, 194,.5) 5px,rgba(245, 192, 194,.5) 10px);"> </div> <center><h1 style='margin:15px;color:white;font-family: "Poppins", sans-serif!important;'>NOUVELLE COMMANDE SUR MAINDRON STRUCTURES</h1></center> <div style="background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(245, 192, 194,.5) 5px,rgba(245, 192, 194,.5) 10px);"> </div><br> <center> <div style="width:80%;background-color:#f2f2f2; border-style:solid; border-color:#f2f2f2; border-radius:20px; padding:10px;margin:10px"> <div style="width:60%; background-color:#EBEDEF; padding:70px; margin:50px"> <div> Bonjour, <br> <p>Une commande vient d'être passée sur votre site internet <a href="{{absolute_url(path('home'))}}">{{absolute_url(path('home'))}}</a></p> <p> <h2 style='margin-bottom:5px;'>Fiche contact</h2> <strong>Numéro de commande:</strong>: {{data.productKey}}<br> <strong>Nom & Prénom</strong>: {{ data.lastname }} {{ data.firstname }}<br> <strong>Email</strong>: {{ data.email }}<br> <strong>Téléphone</strong>: {{ data.phone }}<br> <strong>Adresse</strong>: {{ data.address }} {{ data.zipcode }} {{ data.city }}<br> <h2 style='margin-bottom:5px;'>Produit(s)</h2> <table class="table table-striped"> <thead> <tr> <th>Nom</th> {# <th>Taille</th> #} <th>Prix</th> <th>Quantité</th> </tr> </thead> <tbody> {% for product in products %} <tr> <td>{{product.object.title}}</td> {# <td>{{product.object.size}} cm</td> #} {% if product.object.solde > 0 %} {% set price = product.object.priceSolde * product.qtt %} {% else %} {% set price = product.object.price * product.qtt %} {% endif %} <td>{{price}} €</td> <td> {{product.qtt}} </td> </tr> {% else %} <tr> <td colspan="6">Aucun enregistrement</td> </tr> {% endfor %} </tbody> </table> <br> <div class="total"> <h3>Total: {{total}} €</h3> </div> <br> <center><img src="http://www.bhinternet-test-3.fr/build/images/logo-domosystem.82ccd433.png" alt="..." style="height:200px!important;width:300px"/></center> </div> </div> <i><small>Veuillez noter que ceci est un email automatique de <a href="{{absolute_url(path('home'))}}">{{absolute_url(path('home'))}}</a></small><i/> </div> </body> </html>