Código PHP:
<?php
$para = '[email protected]';
// Asunto
$titulo = 'Atencion con cambio de tarifas';
// Cuerpo o mensaje
$mensaje = '
<html>
<head>
<title>Atención con el Cambio de Tarifas y Comisiones</title>
</head>
<body>
<p>¡todos los vendedores a leer las tarifas segun empresas!</p>
<table>
<tr>
<th>Para:</th><th>$para</th><th>Nueva Tarifa</th><th>Comision</th>
</tr>
<tr>
<td>Asunto:</td><td>$titulo</td><td>3.5</td><td>10%</td>
</tr>
<tr>
<td>Mensaje:</td><td>$mensaje</td><td>18.1</td><td>11%</td>
</tr>
</table>
</body>
</html>
';
// Cabecera que especifica que es un HMTL
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Cabeceras adicionales
$cabeceras .= 'From: Recordatorio <[email protected]>' . "\r\n";
$cabeceras .= 'Cc: [email protected]' . "\r\n";
$cabeceras .= 'Bcc: [email protected]' . "\r\n";
// enviamos el correo!
mail($para, $titulo, $mensaje, $cabeceras);
?>