hellofacteurV1/www/themes/seb/mail/defaut.php

161 lines
9.3 KiB
PHP
Executable File

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title><?=$Mail_html_sujet;?></title>
<style type="text/css">
#outlook a {padding:0;}
body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}
#backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;}
img {outline:none; text-decoration:none; -ms-interpolation-mode: bicubic;}
p {margin:0;}
a img {border:none;}
.image_fix {display:block;}
</style>
</head>
<body style="background-color: #F7F8FA;">
<base href="<?=SITE_URL;?>">
<div style="color: #f7f8fa;font-size:0;line-height:0;">
<?=$Mail_html_sujet;?>
</div>
<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#F7F8FA">
<tr>
<td valign="top" align="center">
<table id="wrapper" style="max-width: 480px; padding:20px 10px;" cellpadding="0" cellspacing="0" border="0" width="100%" >
<tr>
<?php
if(!empty($Mail_html_header))
{
echo "<td valign=\"top\" align=\"center\">".str_replace("<p","<p style=\"margin: 0; font-size: 10px;\"",str_replace("<a","<a style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;color: #b8b8ba;text-decoration: none;\"",$Mail_html_header))."</td>";
}
?>
<tr><td valign="top" height="20"></td></tr>
</tr>
<tr>
<td valign="top" align="center">
<table cellpadding="0" cellspacing="0" width="100%" >
<tr height="25" style="height:25px">
<td></td>
<td rowspan="2" valign="top" align="center" width="78" height="110" bgcolor="white">
<a href="<?=SITE_URL;?>" target="_blank" style="display: block;width: 78px;height: 110px;outline:none;text-decoration: none!important;">
<?php
if(empty($Mail_html_url_logo))
{
$Mail_html_url_logo=SITE_URL."/".TEMPLATE_REP."/mail/logo-header.jpg";
$mois=date('m');
$jour=intval(date('d'));
if(($mois=="12")&&($jour>10)||($mois=="01")&&($jour<7))
$Mail_html_url_logo=SITE_URL."/".TEMPLATE_REP."/mail/logo-header-noel.jpg";
}
?>
<img class="image_fix" src="<?=$Mail_html_url_logo;?>" alt="<?=htmlentities(SITE_NOM,ENT_QUOTES);?>" width="78" height="110" style="outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;"/>
</a>
</td>
<td></td>
</tr>
<tr height="75">
<td style="border-left: 1px solid #ebebeb;border-top: 1px solid #ebebeb;border-radius: 5px 0 0 0;" bgcolor="white" cellpadding="0" cellspacing="0" border="0" height="85"></td>
<td style="border-right: 1px solid #ebebeb;border-top: 1px solid #ebebeb;border-radius: 0 5px 0 0;" bgcolor="white" cellpadding="0" cellspacing="0" border="0" height="85"></td>
</tr>
</table>
<table style="border-left: 1px solid #ebebeb;border-right: 1px solid #ebebeb;border-bottom: 1px solid #ebebeb;border-radius: 0 0 5px 5px;" bgcolor="white" cellpadding="0" cellspacing="0" border="0" width="100%" >
<tr>
<td valign="top" align="center">
<table cellpadding="0" cellspacing="0" border="0" align="center" width="100%">
<tr>
<td width="30"></td>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr><td valign="top" height="30"></td></tr>
<?php
if(!empty($Mail_html_intro))
{
echo "<tr><td valign=\"top\">".str_replace("<a","<a style=\"text-decoration: none; color: #007793;\"",str_replace("<p","<p style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 400;color: #303030;\"",str_replace("<h3","<h3 style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 400;color: #303030;\"",$Mail_html_intro)))."</td></tr>";
}
if(!empty($Mail_html_items)):
?>
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<?php
$code_original=array("<p","<a","<FclFlux_annonce_b>","</FclFlux_annonce_b>","<FclFlux_annonce_h>","</FclFlux_annonce_h>");
$code_remplace=array("<p style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 400;color: #303030;\"","<a style=\"text-decoration:none;color:#007793;font-weight:bold;letter-spacing:1px;\"","<span style='color:#007793;font-weight:bold;letter-spacing:1px;'>[Hello facteur]</span> ","","<span style='color:#007793;font-weight:bold;letter-spacing:1px;'>[Hello facteur]</span> ","");
foreach($Mail_html_items as $item)
{
?>
<tr>
<td valign="top" width="18">
<p style="font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 600;color: #fedd32;">&bull;</p>
</td>
<td valign="top">
<?php
echo str_replace($code_original,$code_remplace,$item);
?>
</td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
<?php
endif;
if(!empty($Mail_html_complement))
{
echo "<tr><td valign=\"top\">".str_replace("<a","<a style=\"text-decoration: none; color: #007793;\"",str_replace("<p","<p style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 400;color: #303030;\"",str_replace("<h3","<h3 style=\"font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 16px;line-height: 1.5em;margin: 0 0 20px 0;font-weight: 400;color: #303030;\"",$Mail_html_complement)))."</td></tr>";
}
?>
<tr><td valign="top" height="20"></td></tr>
<?php
if(!empty($Mail_html_liens_action)):
?>
<tr>
<td valign="top" align="center">
<table cellpadding="0" cellspacing="5" border="0" align="center" width="320" >
<?php
foreach($Mail_html_liens_action as $lien)
{
echo "<tr><td valign=\"top\" align=\"center\" bgcolor=\"#FF9D0E\" style=\"display: block;border-radius:5px;background-image:-o-linear-gradient(90deg, #fedd32 0%, #fdb92e 100%);background-image: -moz-linear-gradient(90deg, #fedd32 0%, #fdb92e 100%);background-image: -webkit-linear-gradient(90deg, #fedd32 0%, #fdb92e 100%);background-image: -ms-linear-gradient(90deg, #fedd32 0%, #fdb92e 100%);background-image: linear-gradient(0deg, #fedd32 0%, #fdb92e 100%);\">".str_replace("<a","<a style=\"display:inline-block;width:100%;height: 45px!important;font-family:'Avenir Next','Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 20px!important;line-height: 45px!important;font-weight: 600!important;color: #000000!important;text-decoration: none!important;\"",$lien)."</td></tr>";
}
?>
</table>
</td>
</tr>
<?php
endif;
?>
<tr><td valign="top" height="50"></td></tr>
</table>
</td>
<td width="30"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr><td valign="top" height="20"></td></tr>
<tr>
<td valign="top" align="center">
<a href="<?=SITE_URL;?>" target="_blank" style="outline:none;text-decoration: none!important;">
<img class="image_fix" src="<?=SITE_URL."/".TEMPLATE_REP."/mail/logo-footer.jpg";?>" alt="<?php htmlentities(SITE_NOM,ENT_QUOTES);?>" width="120" height="50" style="outline:none;text-decoration:none;-ms-interpolation-mode: bicubic;"/></a>
</td>
</tr>
<tr><td valign="top" height="20"></td></tr>
<?php
if(!empty($Mail_html_footer))
{
echo "<tr><td valign=\"top\" align=\"center\"><table cellpadding=\"0\" border=\"0\" style=\"line-height: 1.2em; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; border-spacing: 0; font-size: 100%;\" cellspacing=\"0\" width=\"100%\" align=\"center\"><tr valign=\"top\"><td width=\"100%\" style=\"border-spacing: 0; text-align: center;\">".str_replace("<p","<p style=\"text-align: center; margin: 0; padding: 0 4px 0 0; font-size: 12px; color: #b8b8ba; font-weight: regular; line-height: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; text-shadow: 0 1px 0 #fff;\"",str_replace("<a","<a style=\"text-decoration: none; color: #007793;\"",$Mail_html_footer))."</td></tr></table></td></tr>";
}
?>
</table>
</td>
</tr>
</table>
<!-- End of wrapper table -->
</body>
</html>