mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
añadido mensajeria
This commit is contained in:
41
ci4/app/Views/themes/vuexy/mail/envio_pedido.php
Normal file
41
ci4/app/Views/themes/vuexy/mail/envio_pedido.php
Normal file
@ -0,0 +1,41 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user