Current File : /home/karenpetzb/application/modules/default/views/helpers/mail_user_to_commercial.phtml |
<?php
$user = $this->user;
$message = $this->message;
$messageNotConnected = $this->messageNotConnected;
?>
<style type="text/css">
.text1 {
font-family: "Arial";
font-size: 11px;
font-weight: bold;
color: #000000;
text-decoration: none;
width: 100%;
float: left;
margin: 5px;
text-align: center;
}
.text2 {
font-family: "Arial";
font-size: 11px;
font-weight: normal;
color: #000000;
text-decoration: none;
width: 100%;
float: left;
margin: 5px;
text-align: center;
}
</style>
<div class="text1">DEMANDE D'INFORMATIONS</div>
<div class="text1">Client :</div>
<div class="text2">
<?php if (isset($user) && !empty($user)) {
echo $user['nom']." ".$user['prenom'].'<br/><br/>';
echo 'Email : '.$user['email'].'<br/><br/>';
echo 'T�l�phone : '.$user['tel'];
} else {
echo $messageNotConnected;
} ?>
</div>
<div class="text1">Message :</div>
<div class="text2">
<?php echo $message; ?>
</div>