in reply to How do I get an attached image to show up in HTML?
did you try to do : Untested
$msg->attach( Type=>'text/html', Data=>qq{<body>The image: </body>} ); $msg->attach( Type=>'image/gif', disposition=>'inline', Path=>'calbanner2.gif', Filename=>'calbanner2.gif' ); $msg->send();
|
|---|