alpha_full/admin/extensions/formules/mailMessage.php
2026-04-06 22:58:51 +02:00

29 lines
1.2 KiB
PHP
Executable File

<?php
$nomFicAppelant = basename(__FILE__);
$sujet='Nouvelle prestation sur 123ventes';
$msgB="<br>";
$msgB .='<img width="30px" src="https://123ventes.com/images/logo-bleu.svg" />';
$msgB .='<br>Cher administrateur,';
$msgB .='<br><br>';
$msgB .="Une nouvelle prestation a été reglé sur 123Ventes pour le site = '" .$_SESSION['nomSiteAff']. "' !";
if ($trouve==true) {
$msgB .="<br><br>A finaliser : <br>";
if (isset($idModule)) $msgB .="<br>Module : ". $idModule;
if (isset($idModule)) $msgB .="<br>Option : ". $idFormule;
if (isset($idModule)) $msgB .="<br>description : ". $description;
$msgB .="<br><br>Action a faire au plus vite !";
}
$msgB=stripslashes($msgB);
$msgB .='<br><br>';
include ("./mails/pdpAdmin.php");
$msgB .=stripslashes($msgPdp);
$msgB .='<img src="https://123ventes.com/images/logo-bleu.svg" />';
$message_business = '<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>' .$sujet. '</title></head><body>' .$msgB. '<br></body></html>';
if (isset($debug[1]) && $debug[1] == '1' ) {echo '<br>message_business=<span style="max-width:90%;"' .$message_business. '</span><br>';}
?>