generation-jdr/lib/newsletters.php

9 lines
170 B
PHP

<?php
function newletters($mail)
{
$monfichier = fopen('mail/mail.txt', 'a+');
fputs($monfichier, $mail);
fputs($monfichier, ";");
fclose($monfichier);
}