Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--This is a blade template that goes in email message to site administrator-->
<?php
//get the first name
$nome = Input::get('nome');
$cognome = Input::get ('cognome');
$date = Carbon::now()->format('d/m/Y');
$azienda = Input::get('azienda');
$mail = Input::get ('mail');
$telefono = Input::get ('telefono');
$userIpAddress = Request::getClientIp();
?> 

<h1>Convegno Aiba 2018: Scheda di Adesione del Sig. {{$nome}} {{$cognome}}</h1>

<p>
Nome: <?php echo ($nome); ?> <br>
Cognome: <?php echo($cognome);?> <br>
Azienda: <?php echo($azienda);?><br>
Email: <?php echo ($mail);?> <br>
Telefono: <?php echo ($telefono); ?><br>
Date: <?php echo($date);?><br>
User IP address: <?php echo($userIpAddress);?><br>
</p>

Commits for Nextrek/Aiba_backup/app/views/emails/iscrizione.blade.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000