1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-03 00:42:51 +02:00

Optimisation de l'envoi de mails

This commit is contained in:
Yohann
2019-09-08 12:45:48 +02:00
committed by galaxyoyo
parent bd73e82cb0
commit 5771a15a32
16 changed files with 241 additions and 116 deletions

View File

@ -53,7 +53,7 @@ class NewOrganizer {
VALUES (?, ?, ?, ?, ?, ?);");
$req->execute([$this->email, password_hash($this->password, PASSWORD_BCRYPT), $this->surname, $this->first_name, $this->admin ? "ADMIN" : "ORGANIZER", $YEAR]);
sendAddOrganizerMail($this);
Mailer::sendAddOrganizerMail($this);
}
}