From 8bc2cb9ff30d1de937b34d58e32f33123a5e8b64 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Wed, 28 Sep 2022 12:02:59 +0200 Subject: [PATCH] added sending test mail --- gestion/envoiMailing.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/gestion/envoiMailing.php b/gestion/envoiMailing.php index 260f67b..8e86b6f 100644 --- a/gestion/envoiMailing.php +++ b/gestion/envoiMailing.php @@ -52,17 +52,23 @@ if (empty($idVotation)) $sujet = "[LALIS] Convocation à un vote"; $textDebut = "Bonjour,\nL'association Lalis vous invite à un vote du " . formatteDate('fr', $votation['dd'], 'Europe/Paris') . " 0h00 au " . formatteDate('fr', $votation['df'], 'Europe/Paris') . " minuit.\nMotif du vote : " . $votation['libelle'] . "\n\nPour voter, cliquez sur le lien suivant :\nhttps://lalis69.ddns.net:10443/vote/vote.form.php?v=" . $idVotation . "&id="; $textFin = "\n\nNous vous rappelons que pour pouvoir voter, vous devez être à jour de cotisation à la date du vote.\nLes résultats seront visibles dès le " . formatteDate('fr', $votation['tf'], 'Europe/Paris') . " par le lien suivant : https://lalis69.ddns.net:10443/vote/vote.resultat.php?id=" . $idVotation . "\nAttention: ce lien contient votre identifiant de vote, ne le transmettez, sinon la personne pourra voter à votre place.\n\nPour Lalis, Le Président, David Larochette."; - foreach($adherents as $adherent) + if ( $_GET['status'] == 'Oui') { - $text = $textDebut . base64_encode($adherent['login']) . $textFin; - print '
' . $adherent['email'] . ' ' . $adherent['firstname'] . ' ' . $adherent['lastname'] . EOLH . nl2br($text) . '
'; - if ( $_GET['status'] == 'Oui') + foreach($adherents as $adherent) { + $text = $textDebut . base64_encode($adherent['login']) . $textFin; + print '
' . $adherent['email'] . ' ' . $adherent['firstname'] . ' ' . $adherent['lastname'] . EOLH . nl2br($text) . '
'; //print $text; envoiMail($adherent['email'], $sujet, $text, $html=false, $cc='', $bcc=''); //envoiMail('dtux@free.fr', $sujet, $text, $html=false, $cc='', $bcc=''); } + }else + { + //print $text; + envoiMail($admin, $sujet, $text, $html=false, $cc='', $bcc=''); + } + }else { print("

Annulation de l'envoi du Mailing pour la votation : " . $votation['libelle'] . "