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

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-05-05 18:22:38 +02:00
<?=$text['mail']['adresse'];?>\n
<?=$text['mail']['last_name'].', '.$text['mail']['first_name'];?>\n
2014-05-02 19:10:28 +02:00
\n
\n
2014-05-05 18:22:38 +02:00
<?=$text['mail']['subject'];?>\n
2014-05-02 19:10:28 +02:00
\n
\n
<?php
2014-05-05 18:22:38 +02:00
$Document = strip_tags($text['mail']['text'],$strip_tags);
2014-05-02 19:10:28 +02:00
$Rules = array ('@<script[^>]*?>.*?</script>@si',
'@<[\/\!]*?[^<>]*?>@si',
'@([\r\n])[\s]+@',
'@&(quot|#34);@i',
'@&(amp|#38);@i',
'@&(lt|#60);@i',
'@&(gt|#62);@i',
'@&(nbsp|#160);@i',
'@&(iexcl|#161);@i',
'@&(cent|#162);@i',
'@&(pound|#163);@i',
'@&(copy|#169);@i',
'@&(reg|#174);@i',
'@&#(d+);@e'
);
$Replace = array ('',
'',
'',
'',
'&',
'<',
'>',
' ',
chr(161),
chr(162),
chr(163),
chr(169),
chr(174),
'chr()'
);
echo preg_replace($Rules, $Replace, $Document);
?>