Try this (note the cid in the img src):<div><br></div><div><div>my $msg = MIME::Lite->new(</div><div>         From    => '<a href="mailto:richard@rushlogistics.com">richard@rushlogistics.com</a>',</div><div>         To      => $email,</div>
<div>         Subject => "HTML email test",</div><div>         Type    =>'multipart/related'</div><div>);</div><div><br></div><div>my $gif = "/home/richard/gator_head.gif";</div><div>my $message = '<img src="cid:'.basename($gif).'" alt="Image should be here."/></div>
Please visit our site <a href="<a href="http://savethegators.org/" target="_blank">http://savethegators.org/</a>">online</a><hr>';<div><br></div><div>$msg->attach(</div><div>        Type => 'text/html',</div>
<div>        Data =>  $message,</div><div>);</div><div>$msg->attach(</div><div>        Type => 'image/gif',</div><div>        Id   => basename($gif),</div><div>        Path => $gif,</div><div>);</div>
<div><br></div><br><div class="gmail_quote">On Fri, Apr 8, 2011 at 11:00 AM, Richard Reina <span dir="ltr"><<a href="mailto:richard@rushlogistics.com">richard@rushlogistics.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I am trying to send an email with an image in the signature but when I do the image does not show up.  Can anyone tell me what I am doing wrong?<br>
<br>
# create a new MIME Lite based email<br>
my $msg = MIME::Lite->new<br>
(<br>
Subject => "HTML email test",<br>
>From    => '<a href="mailto:richard@rushlogistics.com">richard@rushlogistics.com</a>',<br>
To      => $email,<br>
Type    => 'text/html',<br>
Data    => '<img src="/home/richard/gator_head.gif" alt="Image should be here."/><br>
Please visit our site <a href="<a href="http://savethegators.org/" target="_blank">http://savethegators.org/</a>">online</a><hr>'<br>
);<br>
--<br>
Richard Reina<br>
Rush Logistics, Inc.<br>
Watch our 3 minute movie:<br>
<a href="http://www.rushlogistics.com/movie" target="_blank">http://www.rushlogistics.com/movie</a><br>
<br>
_______________________________________________<br>
Chicago-talk mailing list<br>
<a href="mailto:Chicago-talk@pm.org">Chicago-talk@pm.org</a><br>
<a href="http://mail.pm.org/mailman/listinfo/chicago-talk" target="_blank">http://mail.pm.org/mailman/listinfo/chicago-talk</a><br>
</blockquote></div><br></div>