我无法按原样发送图像..我发送电子邮件没有问题只是图像没有显示..只是链接..你能帮我吗?这是我的代码..提前谢谢
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();