Also I forgot to mention I can get perl/windows to email via a gmail account. It can send a html email but the images come through as attachments and not in the displayed html email. So for example this html works:
<html><body>
<center>Hello World</center><br>
Image.gif<img src='Image.gif'><br>
</body></html>
This sent from perl sends the image as an attachment not displayed in the html.
<html><body>
<center>test</center>
</body></html>
echo "<html>";
echo "<body>";
echo "Under_Construction.gif<img src='Under_Construction.gif'><br>";
echo "</body>";
echo "</html>";
Any thoughts/ideas?
|