I think the display of the email also depends on the email client.<div>It appears perfectly in Outlook but not the way you want it in the gmail web interface. </div><br><div class="gmail_quote">On Wed, Apr 13, 2011 at 4:30 PM, imran javaid <span dir="ltr"><<a href="mailto:imranjj@gmail.com">imranjj@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Can you try running it with the following changes?<div class="im"><div><br></div><div><img src="cid:gator_head.gif alt:"save the gators"/></div>
</div><div>to</div><div class="im"><div><img src="cid:gator_head.gif" alt="save the gators"/></div>
<div><br></div></div><div>and </div><div>       Type => 'image/jpg',</div><div>to </div><div>       Type => 'image/gif',</div><div><br></div><div><font color="#888888">-imran</font><div><div></div><div class="h5">
<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" target="_blank">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" target="_blank">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" target="_blank">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></div></div>
</blockquote></div><br>