File: /var/www/vhosts/onlinedev.com/httpdocs/processnewsletter.php
<?php
$mails = array('sarnulf@hotmail.com', 'sophia_lee75@yahoo.fr');
$subject = 'Nouvelle Inscription a la Newsletter d\'KASE Soft';
$headers = "Content-Type: text/html\r\nFrom: onlinedev.com<noreply@onlinedev.com>\r\n";
$content = 'Nouvelle inscription a la Newsletter d\'KASE Soft. Adresse: '.$_REQUEST['email'];
foreach ($mails as $mail)
{
mail($mail, $subject, $content, $headers);
}
die('Votre inscription a bien été enregistrée.');