23 lines
916 B
PHP
Executable File
23 lines
916 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
$sujet='Nouveau pack SMS vendu depuis 123ventes';
|
|
|
|
$msgB="<br>";
|
|
$msgB .='<img width="30px" src="https://123ventes.com/images/logo-bleu.svg" />';
|
|
$msgB .='<br>Cher administrateur,';
|
|
$msgB .='<br><br>';
|
|
|
|
$msgB .="Un nouveau pack (sms) a été reglé sur 123Ventes pour le site = '" .$_SESSION['nomSiteAff']. "' !";
|
|
|
|
$msgB=stripslashes($msgB);
|
|
$msgB .='<br><br>';
|
|
include ("./mails/pdpAdmin.php");
|
|
$msgB .=stripslashes($msgPdp);
|
|
|
|
$msgB .='<img src="https://123ventes.com/images/logo-bleu.svg" />';
|
|
$msgB .= '<br>'. $output;
|
|
|
|
$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>';}
|
|
?>
|