I am having trouble sending the image as it is..i have no trouble sending an email its just that the image is not displaying.. just the link..can you help me? here is my code..thanks in advance
require("phpmailer/class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP
$mail->Host="smtp.mail.yahoo.com"; // SMTP servers
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "*************"; // SMTP username
$mail->Password = "**********"; // SMTP password
$mail->From = "*********";
mail->FromName = "*****";
$mail->AddAddress(***********);
$mail->WordWrap = 50; // set word wrap
$mail->IsHTML(true); // send as HTML
$mail->Subject = "Welcome to LilShop";
$mail->Body = '<html>
<head>
</head>
<body>
<a href="http://localhost/mylilshoppev4/mylilshoppe/menu.php">
<img src="C:\phpwebsites\mylilshoppev4\mylilshoppe\images\images\lilshop.gif"alt="lilshop " width="380" height="380" style="margin-left:1.5em;margin-top:1.5em;"/></a>
</body>
</html>';
$mail->Send();