j7BCVOSY008289 j7BCVOSY008289.header j7BD5BAI008933 j7BD5BAI008933.header contents of j7BCVOSY008289 => msg-24072-2.html sample_image.gif contents of j7BD5BAI008933 => msg-24072-3.txt msg-24072-4.html #### $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', );