Estoy haciendo un formulario de 2 campos, nombre, email que envia los datos a una BD mysql y a su vez envia un correo a la cuenta que se registro con un mensaje de bienvenida, lo que yo quiero es que tambien envie o muestre una imagen en el correo del que se registro. lo intente haciendo esto en mi php pero no funciona solo muestra los links. PORFAVOR les pido me asesoren en esto. gracias...
enseguida pongo el codigo php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
$nombre=$_POST['nombre'];
$email=$_POST['email'];
$sendTo = "<" . $email. ">";
$subject = "Mensaje de Prueba";
$headers = "From: [email protected]";
$headers .= "<" . $email. ">\r\n";
$headers .= "Reply-To: " . $_POST["email"];
$message .= '<a href="http://www.XXXXXX.com/boletin/Toon-Tunes.html">
<img src="http://www.XXXXXXX.com/boletin/images/Toon-Tunes_02.jpg"></a>' . "\n";
$headers = "From: [email protected] " .'X-Mailer: PHP/' . phpversion() . " ";
$headers .= 'MIME-Version: 1.0' . " ";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . " ";
mail($sendTo, $subject, $message,$headers);
if ($nombre!= "" && $email!= "")
{
mysql_connect("XXXXX.XXXXXl.com","XXXXX","siempre111232323");
mysql_select_db("XXXXX");
mysql_query("INSERT INTO maillist(nombre,mail) VALUES('$nombre','$email')");
}
?>
</body>
</html>