From 663bbc02004c72b11d09956e373d9c425bb26511 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 30 Apr 2026 10:36:35 +0000 Subject: [PATCH] a --- Cron/Functions.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Cron/Functions.php b/Cron/Functions.php index 18c7a36..0e0a152 100755 --- a/Cron/Functions.php +++ b/Cron/Functions.php @@ -778,3 +778,12 @@ function div_oui_non($ouiNon, $lang=null) } echo $div; } + +function estUnMail($adresseMail) +{ + if (filter_var($adresseMail, FILTER_VALIDATE_EMAIL)) { + return true; + } else { + return false; + } +}