Can you try running it with the following changes?<div><br></div><div><img src="cid:gator_head.gif alt:"save the gators"/></div><div>to</div><div><img src="cid:gator_head.gif" alt="save the gators"/></div>
<div><br></div><div>and </div><div>       Type => 'image/jpg',</div><div>to </div><div>       Type => 'image/gif',</div><div><br></div><div>-imran<br><br><div class="gmail_quote">On Wed, Apr 13, 2011 at 4:09 PM, 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 using the code below to try to get image in the signature of an email. It works but the the name of the image appears next to it.  Does anyone know how I can get it to appear more embeded so that the name of the file does not appear?<br>

<br>
Thanks for any help.<br>
<br>
Richard<br>
<br>
#!/usr/bin/perl -w<br>
use strict;<br>
use MIME::Lite;<br>
<br>
# SendTo email id<br>
my $email = '<a href="mailto:gatorreina@gmail.com">gatorreina@gmail.com</a>';<br>
<br>
    my $msg = MIME::Lite->new(<br>
         To      =>$email,<br>
         Subject =>'HTML with in-line image!',<br>
         Type    =>'multipart/related'<br>
    );<br>
    $msg->attach(<br>
        Type => 'text/html',<br>
        Data => qq{<br>
            <body><br>
                Here's <i>my</i> image:<br>
                <img src="cid:gator_head.gif alt:"save the gators"/><br>
            </body><br>
        },<br>
    );<br>
    $msg->attach(<br>
        Type => 'image/jpg',<br>
        Id   => 'gator_head.gif',<br>
        Path => '/home/richard/gator_head.gif',<br>
    );<br>
    $msg->send();<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>