Tema: Mail masivos
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/11/2007, 19:53
jesustej
 
Fecha de Ingreso: septiembre-2003
Mensajes: 51
Antigüedad: 20 años, 7 meses
Puntos: 0
Re: Mail masivos

Aunque pensandolo mejor podria ser asi....Salvo mejor parecer

<?
$msg="bla bla bla bla bla bla bla"."\n";
$msg.="Cordialmente, \n";
$msg.="www.miprofesor.6te.net";
$asunto="Respuesta desde www.miprofesor.6te.net";
$head = "From: [email protected] \r\n";
$head.= "Content-Type: text/html; charset=ISO-8859-1";

$strSQL="select nombre,mail from users where jajajeje=jijijoju";
$resultado=mysql_query($strSQL, $conexion);

while ($fila=mysql_fetch_array($resultado))
{
$para=$fila["nombre"]." <".$fila["mail"].">";
mail($para,$asunto,$msg,$head);
}
?>