Skip to content
Snippets Groups Projects
Commit 73fbd2ec authored by Nicolas Borboën's avatar Nicolas Borboën
Browse files

[fix] global $CONFIG

parent 3ae58f8d
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#region [Mail Sendings] #region [Mail Sendings]
function mailToResp($surname, $name, $job){ function mailToResp($surname, $name, $job){
global $EMAIL_FORMATION, $EMAIL_FROM, $EMAIL_REPLY_TO; global $CONFIG, $EMAIL_FORMATION, $EMAIL_FROM, $EMAIL_REPLY_TO;
$subject = 'Nouvelle Candidature'; $subject = 'Nouvelle Candidature';
...@@ -22,7 +22,7 @@ function mailToResp($surname, $name, $job){ ...@@ -22,7 +22,7 @@ function mailToResp($surname, $name, $job){
} }
function mailToApprenti($to){ function mailToApprenti($to){
global $EMAIL_FROM, $EMAIL_REPLY_TO; global $CONFIG, $EMAIL_FROM, $EMAIL_REPLY_TO;
$subject = 'Votre candidature pour une place d\'apprentissage'; $subject = 'Votre candidature pour une place d\'apprentissage';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment