Primero quiero agradecer a los que me ayudan

Segundo paso a plantear mi problema.
Tengo un código que funciona a la perfección con el cuál envío e-mails con PHP.
Los códigos son:
contacto.htm
Código :
<style type="text/css"> <!-- .Estilo1 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000; } body,td,th { color: #000000; } body { background-color: #FFFFFF; } .Estilo3 { color: #000000; font-size: 12px; } --> </style> <title>Consulta</title><body link="#CCFF33" vlink="#CCFF33" alink="#CCFF33"> <form id="consulta" name="consulta" method="post" action="enviar.php"><div align="left"> <table width="544" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="131" align="right" valign="top" class="Estilo1">Remitente</td> <td width="413"><label> <input name="remit" type="text" id="remit" size="30"> </label></td> </tr> <tr> <td align="right" valign="top" class="Estilo1">Asunto</td> <td><label> <input name="asunto" type="text" id="asunto" size="30"> </label></td> </tr> <tr> <td align="right" valign="top"><span class="Estilo1">Cuerpo del mensaje</span></td> <td align="left" valign="top"><textarea name="body" cols="60" rows="6" id="body"></textarea></td> </tr> <tr> <td align="right" valign="top" class="Estilo1"><span class="Estilo3" style="margin-top: 0; margin-bottom: 0"><font face="Arial">Destinatario</font></span></td> <td><span style="margin-top: 0; margin-bottom: 0"> <input name="desti" type="text" id="desti" style="font-family: Arial; font-size: 10pt" value="" size="30"> </span></td> </tr> <tr> <td colspan="2"><p align="center" style="margin-top: 0; margin-bottom: 0"><font face="Arial"> <input type="submit" name="Submit" value="Enviar" /> <font size="2"> </font> <input type="reset" name="Reset" value="Borrar" /> </font></p> <p align="center" class="Estilo1 Estilo1" style="margin-top: 0; margin-bottom: 0">*Ingresar un solo E-Mail sin espacios.</p> <p align="center" class="Estilo1" style="margin-top: 0; margin-bottom: 0">Ej: [email protected]</p></td> </tr> </table> </div> <div align="center"></div> </form> </body>
enviar.php
Código :
<?php $remit = $_POST['remit']; $asunto = $_POST['asunto']; $body = $_POST['body']; $desti = $_POST['desti']; $cabeceras = "From: ". $remit ."\r\nContent-type: text/html\r\n"; mail($desti,$asunto,$body,$cabeceras); echo "<style type=\"text/css\"> <!-- .Estilo1 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; } --> </style> </head> <body> <div align=\"center\"><span class=\"Estilo1\">Mensaje enviado correctamente.</span> </div> </body>"; ?>
Bueno, el primero código corresponde al formulario y el segundo al que procesa los datos.
Todo trabaja perfecto el problema es que si ingreso muchos e-mails de esta forma se clasificará automaticamente a este mail como un spam.
Entonces se me ocurrió que por cada e-mail que se ingrese en destinatario (separados por coma) el php enviará un e-mail diferente (de esta forma el e-mail llega como si se le haya enviado a una sola persona y no lo clasifican como spam). No sé cómo hacer esto por lo que necesito de su ayuda. Sé que se puede hacer porque recibo e-mails de una revista cuyo "para" y "de" son el mismo correo electrónico y es un correo publicitario (es como si el dueño de la revista se enviara a si mismo el e-mail pero le llega a todos sus conactos). Espero haber sido claro.
Saludos.