40 lines
902 B
PHP
40 lines
902 B
PHP
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<title>Contacto Web - {{$nombre}}</title>
|
||
|
<!--[if !mso]><!-- -->
|
||
|
|
||
|
<link href='http://fonts.googleapis.com/css2?family=Roboto' rel='stylesheet' type='text/css' />
|
||
|
|
||
|
<!--<![endif]-->
|
||
|
</head>
|
||
|
<body>
|
||
|
<table style="font-family: Roboto, sans-serif; font-size: 12pt; color: rgb(109, 110, 112);">
|
||
|
<tr>
|
||
|
<td style="font-weight: 700; text-align: right;">
|
||
|
Nombre
|
||
|
</td>
|
||
|
<td colspan="6">
|
||
|
{{$nombre}}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td style="font-weight: 700; text-align: right;">
|
||
|
Email
|
||
|
</td>
|
||
|
<td colspan="6">
|
||
|
{{$mail}}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td style="font-weight: 700; text-align: right; vertical-align: top;">
|
||
|
Mensaje
|
||
|
</td>
|
||
|
<td colspan="6">
|
||
|
{{$mensaje}}
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|