phpmailer viene con una carpeta con varios ejemplos y metodos(mail(), smtp y sendmail, con y sin uso de SSL --> google,hotmail. etc)
este es el que usa mail() basico
<html>
<head>
<title>PHPMailer - Mail() basic test</title>
</head>
<body>
Código PHP:
Ver original<?php
require_once('../class.phpmailer.php');
$mail = new PHPMailer(); // defaults to using php "mail()"
$mail->AddAddress($address, "John Doe");
$mail->Subject = "testCron";
$mail->AltBody = "Test Cron!"; // optional, comment out and test
$mail->MsgHTML($body);
$mail->AddAttachment("images/phpmailer.gif"); // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
//$mail->AddAttachment("/home/controldesalud.com/public_html/test/temporal/BeLight-0.22_RC1.zip"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
</body>
</html>
@Adrii952. volviendo a tu script, en
if (mail($email, $asunto, $cuerpo, $headers)) {, donde tenes definido $email, que no lo veo?
SAludos