05-29-2012, 12:08 PM
Hey, a little word:
It' possible to send mail only if the parameter "authorization" is true, to do that only put a condition for send mail:
Pat
It' possible to send mail only if the parameter "authorization" is true, to do that only put a condition for send mail:
Code:
if ($GLOBALS['CONFIG']['authorization'] == 'True') //si demande autoristion
{
SendMailMIME("[i]Mail_adress_of_a_rewiever[/i] ", "ODM", "Nouveau document", $bodyL,"");
}
Pat