si quiero hacer algo asi puedo?
agregar un if dentro del while
Código:
$message .= '
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>Reclamos del dia ' .$tiempo.'</p>
<table border="1">
<tr>
<th>Numero de Reclamo</th>
<th>Area</th>
<th>Responsable</th>
<th>Cargado por</th>
<th>Estado</th>
<th>localidad</th>
</tr>';
while ($row_consulta = mysql_fetch_assoc($consulta)) {
$message.= "<tr>";
$message.= "<td>".$row_consulta['id']."</td>";
$message.= "<td>".if($row_consulta['area']== 4){ echo 'one';}else{echo 'otro';}."</td>";
$message.= "<td>".$row_consulta['responsable']."</td>";
$message.= "<td>".$row_consulta['cargadopor']."</td>";
$message.= "<td>".$row_consulta['estado']."</td>";
$message.= "<td>".$row_consulta['localidad']."</td>";
$message.= "</tr>";
}
$message .= '
</table>
</body>
</html> ';