neue emailtexte ferttig!

This commit is contained in:
Martin Müller 2014-05-05 18:22:38 +02:00
parent 55e16d9443
commit 4a208c96f9
2 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
<table> <table>
<tr> <tr>
<td><?=$data['mail']['adresse'];?></td> <td><?=$text['mail']['adresse'];?></td>
<td><?=$data['mail']['last_name'].', '.$data['mail']['first_name'];?></td> <td><?=$text['mail']['last_name'].', '.$text['mail']['first_name'];?></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><?=$this->request->data['mail']['subject'];?></td> <td colspan="2"><?=$text['mail']['subject'];?></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><?=strip_tags($data['mail']['text'],$strip_tags);?></td> <td colspan="2"><?=strip_tags($text['mail']['text'],$strip_tags);?></td>
</tr> </tr>
</table> </table>

View File

@ -1,12 +1,12 @@
<?=$data['mail']['adresse'];?>\n <?=$text['mail']['adresse'];?>\n
<?=$data['mail']['last_name'].', '.$data['mail']['first_name'];?>\n <?=$text['mail']['last_name'].', '.$text['mail']['first_name'];?>\n
\n \n
\n \n
<?=$this->request->data['mail']['subject'];?>\n <?=$text['mail']['subject'];?>\n
\n \n
\n \n
<?php <?php
$Document = strip_tags($data['mail']['text'],$strip_tags); $Document = strip_tags($text['mail']['text'],$strip_tags);
$Rules = array ('@<script[^>]*?>.*?</script>@si', $Rules = array ('@<script[^>]*?>.*?</script>@si',
'@<[\/\!]*?[^<>]*?>@si', '@<[\/\!]*?[^<>]*?>@si',