"Mail de test",
"rappel" => "Rappel adhésion"
);
$httpMails = array(
"test" => "Ceci est un email de test",
"rappel" => "
Votre cotisation est en attente de paiement
Votre statut de membre adhérent de la E59 débutera après paiement de la cotisation à l'adresse e59.fr/adhesion
Si vous souhaitez annuler votre demande d'adhésion, contactez-nous sur Discord
"
);
$altMails = array(
"test" => "Ceci est un email de test",
"rappel" => "Cotisation en attente de paiement"
);
$from = "no-reply@e59.fr";
$fromName = "Association E59";
sendMail($from, $fromName, $_GET['target'], $mailHeaders[$_GET['type']], $httpMails[$_GET['type']], $httpMails[$_GET['type']]);
header("Location: index.php");
?>