1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?php
if(!empty($_FILES['filename_bia']['name']))
{
$typefile = $_FILES['filename_bia']['type'];
$chemin = "/home/lmlcom/domains/xxx.com/public_html/rib/";
if ($typefile=="application/pdf"||$typefile=="application/force-download")
{
$format="pdf";
}
$newfile = "COLL_BIA"."-".$_POST['codeid']."-".time()."-".$_POST['id'].".".$format;
if($format=="PDF")
{
move_uploaded_file ($_FILES['filename_bia']['tmp_name'],$chemin.$newfile);
$corpsmessage = file_get_contents('https://www.xxx.com/template1coll.tpl');
$corpsmessage = addslashes($corpsmessage);
$sujet = "Document(s)";
$lienfichier = "https://www.xxx.com/rib/".$newfile;
$contenu = "Document(s) pour ".$_POST['salarie'].".<br><div align=\"center\" style=\"margin:15px;\"><br><a href=\"$lienfichier\" class=\"btngreen\" style=\"background: #E4D949;background-image: -webkit-linear-gradient(top, #E4D949, #DACD20);background-image: -moz-linear-gradient(top, #E4D949, #DACD20);background-image: -ms-linear-gradient(top, #E4D949, #DACD20);background-image: -o-linear-gradient(top, #E4D949, #DACD20);background-image: linear-gradient(to bottom, #E4D949, #DACD20);-webkit-border-radius: 28px;-moz-border-radius: 28px;border-radius: 28px;font-family: 'Roboto', sans-serif;color:#0b336a;font-size: 14px;padding: 12px 24px 12px 24px;text-decoration: none;\">Télécharger le doc</a></div><br>";
$info = "";
$corpsmessage = ereg_replace("\[CONTENU\]", $contenu, $corpsmessage);
$corpsmessage = ereg_replace("\[INFO\]", $info, $corpsmessage);
mailjetfunc("contact@xxx.com",$sujet,$corpsmessage);
//rajout du jour donc non testé, dans le but de forcer le cache
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Expires: ".gmdate("D, d M Y H:i:s", time()+ 604800)." GMT");
header("Cache-Control: public, max-age=604800");
}
}
?> |
Partager