mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
41 lines
1.9 KiB
PHP
41 lines
1.9 KiB
PHP
<table width="600" bgcolor="#ffffff">
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
Número pedido: <?= esc($datos_pedido->pedido_id) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
Título: <?= esc($datos_pedido->titulo) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
CP: <?= esc($datos_pedido->cp) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
Proveedor envío: <?= esc($datos_pedido->proveedor_nombre) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
Código seguimiento: <?= esc($datos_pedido->codigo_seguimiento) ?></td>
|
|
</tr>
|
|
<?php if (!empty($datos_pedido->url)): ?>
|
|
<tr>
|
|
<td
|
|
style="font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333; text-align:center; line-height: 15px;">
|
|
URL seguimiento: <a href="<?= esc($datos_pedido->url) ?>"><?= esc($datos_pedido->url) ?></a>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td height="20" align="center">
|
|
<p style="margin-top: 20px;font-family: Helvetica, arial, sans-serif; font-size: 15px; color: #333333;">Consulte con su comercial <?= esc($datos_pedido->comercial_nombre) ?> en el correo
|
|
<?= esc($datos_pedido->comercial_correo) ?></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|