dreamjob/app/View/Emails/html/contact.ctp

24 lines
666 B
Plaintext
Raw Normal View History

2014-06-01 19:07:41 +02:00
<?php
/*
*
*/
?>
2014-05-02 19:10:28 +02:00
<table>
<tr>
2014-05-05 18:22:38 +02:00
<td><?=$text['mail']['adresse'];?></td>
2014-06-01 19:07:41 +02:00
<?php if(isset($text['mail']['company'])){ ?>
<td><?=$text['mail']['owner'].' von '.$text['mail']['company'];?></td>
<?php }else{ ?>
<td><?=$text['mail']['last_name'].', '.$text['mail']['first_name'];?></td>
<?php } ?>
2014-05-02 19:10:28 +02:00
</tr>
2014-06-01 19:07:41 +02:00
<?php if(isset($text['mail']['subject'])){ ?>
<tr>
<td colspan="2"><?=$text['mail']['subject'];?></td>
</tr>
<?php } ?>
2014-05-02 19:10:28 +02:00
<tr>
2014-05-05 18:22:38 +02:00
<td colspan="2"><?=strip_tags($text['mail']['text'],$strip_tags);?></td>
2014-05-02 19:10:28 +02:00
</tr>
</table>