Jugger has asked for the wisdom of the Perl Monks concerning the following question:
This sends the mail ok but the attachment isnt shown, nowmy $msg = MIME::Lite->new( From =>'me@myhost.com', To =>'mehomeemail@myhost.com', Subject =>'Test Message', Type =>'multipart/mixed' ); # Add the text message part: $msg->attach(Type =>'TEXT', Data =>"Here goes" ); # Add the image part $msg->attach(Type =>'image/gif', Path=>'/foo/baa.gif', Disposition => 'attachment' ); # send it $msg->send();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help with MIME::Lite
by kaif (Friar) on Jun 08, 2005 at 17:04 UTC | |
by Jugger (Initiate) on Jun 08, 2005 at 18:32 UTC | |
|
Re: Help with MIME::Lite
by fauria (Deacon) on Jun 08, 2005 at 16:48 UTC | |
by Jugger (Initiate) on Jun 08, 2005 at 17:20 UTC | |
|
Re: Help with MIME::Lite
by TedPride (Priest) on Jun 08, 2005 at 16:55 UTC |