39 lines
1.3 KiB
PHP
Executable File
39 lines
1.3 KiB
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
|
|
include_once ("mailer.v04.php");
|
|
include_once ($includePath. "/req/14-init.mailMsgList.php");
|
|
|
|
$prodServer=$_SESSION['prodServer'];
|
|
|
|
$sujet=$mailMsg[6];
|
|
$test=false;
|
|
if (isset($_SERVER['REQUEST_URI'])) $test=strpos($_SERVER['REQUEST_URI'],"wbadm");
|
|
if ($test !=false ) {
|
|
$sujet="en Test --- " .$sujet;
|
|
}
|
|
$test= strpos($sujet,$_SESSION['nomSiteAff']);
|
|
if($test==false) $sujet.=' ' .$_SESSION['nomSiteAff'];
|
|
$msg ='';
|
|
$msg .= "<br>";
|
|
$msg .= "<img src='" .$mailImgPt[19]. "' alt='" .$mailAlt[19]. "' /><br><br>";
|
|
$msg .= "" .$civ;
|
|
$msg .= " " .$nom;
|
|
$msg .= " " .$prenom;
|
|
$msg .= ",";
|
|
$msg .= "<br>";
|
|
$msg .= $mailMsg[7];
|
|
$msg .= '<a href="https://' .$server.'/motdepasse-log='.$idMail. '-cle='.$cle.'" >'.$mailMsg[8].'</a>';
|
|
$msg .= "<br>";
|
|
|
|
// ---------------------------------------------------
|
|
// Pied de page
|
|
// ---------------------------------------------------
|
|
if ($lg=="") {$lg="FRA";}
|
|
$url=$prodServer. "/Publication/piedDePageMail/pdpMail_" .$lg. ".php";
|
|
include ('lireContent.php');
|
|
|
|
$msg .= '<br>'.$lire;
|
|
$msg=stripslashes($msg);
|
|
$message_html = '<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>' .$sujet. '</title></head><body>' .$msg. '<br></body></html>';
|
|
?>
|