un ejemplo de como usar phpmailer es este ke viene en el link ke te puse arriba:
Código:
php:
<?php
require_once 'class.phpmailer.php';
$mail = new PHPMailer ();
$mail -> From = "[email protected]";
$mail -> FromName = "Foo";
$mail -> AddAddress ("[email protected]");
$mail -> Subject = "Test";
$mail -> Body = "<h3>From GMail!</h3>";
$mail -> IsHTML (true);
$mail->IsSMTP();
$mail->Host = 'ssl://smtp.gmail.com';
$mail->Port = 465;
$mail->SMTPAuth = true;
$mail->Username = '[email protected]';
$mail->Password = '******';
if(!$mail->Send()) {
echo 'Error: ' . $mail->ErrorInfo;
}
else {
{ echo 'Mail enviado!'.
}
?>
la parte del body es donde tienes ke poner los datos del formulario algo como esto:
Código:
$mail -> Body = "<h3>Hola buen día:
</h3><table border='3'><tr><td bgcolor='lightblue' Height='10' width='300'><center>Solicitada por</center></td>
<td bgcolor='lightblue'Height='10' width='100'><center>Para</center></td>
<td bgcolor='lightblue'Height='10' width='100'><center>Desde las</center></td>
<td bgcolor='lightblue' Height='10' width='100'><center>Hasta las</center></td>
<td bgcolor='lightblue' Height='10' width='100'><center>Desde el día</center></td>
<td bgcolor='lightblue' Height='10' width='100'><center>Hasta el día</center></td></tr>
<tr><td>$emp</tr></td><td><center>$moti</center></td><td><center>$de</center></td><td><center>$a</center></td><td><center>$fecha_first</center></td>
<td><center>$fecha2</center></td></table><br><br>
";
Ojala te sirva de algo.