21 lines
889 B
PHP
Executable File
21 lines
889 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
$sujet='Nouvel abonnement de site sur 123ventes';
|
|
|
|
$msgB="<br>";
|
|
$msgB .='<img width="30px" src="https://123ventes.com/images/logo-bleu.svg" />';
|
|
$msgB .='<br>Cher administrateur,';
|
|
$msgB .='<br><br>';
|
|
|
|
$msgB .="Un nouvel abonnement (profil) 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 />';
|
|
|
|
$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>';}
|
|
?>
|