in reply to Help with MIME::Lite
... $msg->attach( Type =>'image/gif', Path =>'/tmp/image1.gif', Disposition => 'attachment' ); my $part = MIME::Lite->new( Path => '/foo/image2.gif' ); $part->attr('Content-Type' => 'image/gif'); $msg->attach($part); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help with MIME::Lite
by Jugger (Initiate) on Jun 08, 2005 at 17:20 UTC |