Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
When i reference a image located on a web server it works, but with later version of email clients such as Mozilla and Outlook, it requires the user to click on a button to display the image. This step is not wanted. Any ideas or guidance would be appreciated. Thanks$msg = MIME::Lite->new ( To =>'someone@somewhere.co.nz', From => 'mail@someone.co.nz', Subject =>'mailbird', Type =>'multipart/mixed', ); $msg->attach(Type => 'text/html', Data => qq~ <html> <body bgcolor="red"> <img src="http://www.google.co.nz/images/hp0.gif" alt="Google L +OGO"> <p><font size=4>Taieri Print Ltd</font></p> <img src="tplogo.jpg" alt="TP LOGO"> <p><font size=2 color="blue">Mailbird Newsletter</font></p> </body> </html> ~); $msg->attach(Type =>'image/jpg', Path =>'tplogo.jpg', Filename =>'logo.jpg', disposition=>'inline', ); $msg->send('smtp', 'smtp.xtra.co.nz') or die 'Message not sent to $rec +ipient';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML email with attachments
by ikegami (Patriarch) on Aug 03, 2005 at 05:05 UTC | |
|
Re: HTML email with attachments
by merlyn (Sage) on Aug 03, 2005 at 06:50 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |