Hi,
i want to include images in email,i write the following script which unfortunatly not working,please any one help me resloved my issue
`$to = "example@gmail.com";
$subject = "new account created";
$body = "New account has been created
<img border=’0' src=’http://www.example.com/myimages/track.php?MID=1111&SID=2222' width=’1' height=’1'>
" ;
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= "From: admin@gmail.com";
$neww=mail($to,$subject,$body,$headers);
`