templates/emails/linkdepago.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <style>
  6.         /* Estilos globales que algunos clientes de correo permiten */
  7.         body {
  8.             background-color: #f4f4f4; /* Color de fondo */
  9.             color: #ffffff; /* Color del texto */
  10.             font-family: Arial, sans-serif; /* Tipo de fuente */
  11.         }
  12.         a {
  13.             color: #ffffff; /* Color del texto del enlace */
  14.             background-color: #007bff; /* Color de fondo del enlace */
  15.             padding: 10px 20px; /* Espaciado interno del enlace */
  16.             border-radius: 5px; /* Bordes redondeados del enlace */
  17.         }
  18.     </style>
  19. </head>
  20. <body>
  21.     <div style="background-color: #3b1f1c; margin: 0 auto; max-width: 600px; padding: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.1); text-align: center; border-radius: 5px;">
  22.         <h1 style="color: #ffffff;">¡Hola {{ cabecera.nombrecliente }}!</h1>
  23.         <h3 style="color: #ffffff;">
  24.             ¡GRACIAS POR ELEGIR CREPES & WAFFLES!
  25.         </h3>
  26.         <h5 style="color: #ffffff;">
  27.             En el siguiente enlace podrás culminar tu proceso de pago.
  28.         </h5>
  29.         <p style="color: #ffffff; padding-top: 20px;">
  30.             <a href="{{ cabecera.linkdepago }}" style="color: #ffffff; background-color: #ff6666; padding: 10px 20px; border-radius: 5px; font-size: 16px;">Click aquí</a>
  31.         </p>
  32.         <p style="color: #ffffff; padding-top: 20px;">
  33.             Este enlace es válido solo por {{ timeout }} minutos y no debe ser compartido.
  34.         </p>
  35.     </div>
  36.     <p style="color: #000000; padding-top: 10px;">
  37.         <strong>Importante:</strong> Por razones de seguridad, no respondas a este correo. Si no realizaste ningún pedido o crees que este mensaje es un error, por favor ignóralo.
  38.     </p>
  39.     <p style="color: #000000; padding-top: 10px;">
  40.         Correo generado automáticamente por: <strong><a href="https://bitcubo.com" style="color: #000000;">Bitcubo</a></strong>.
  41.     </p>
  42. </body>
  43. </html>