The example of HTML email with images included doesn't work. This can
probably be fixed by only changing docs - or in code.
$msg->attach(
Type => 'image/gif',
Id => 'myimage.gif',
Path => '/path/to/somefile.gif',
);
Should be (< ... > added around attachment id ):
$msg->attach(
Type => 'image/gif',
Id => '<myimage.gif>',
Path => '/path/to/somefile.gif',
);
The second is tested with Opera 9.24 built in email client and
OutlookExpress 6.0.