$msg = MIME::Lite->new( To =>'you@yourhost.com', Subject =>'HTML with in-line images!', Type =>'multipart/related' ); $msg->attach(Type => 'text/html', Data => qq{
Here's my image:
Some content here..blah blah blah
}
);
$msg->attach(Type => 'image/jpg',
Id => 'head_image.jpg',
Path => '/path/to/head_image.jpg',
);
$msg->attach(Type => 'image/jpg',
Id => 'bottom_image.jpg',
Path => '/path/to/bottom_image.jpg',
);