in reply to MIME::Lite in CGI hangs if there are attachments

Did you try attaching a simple text file? MIME::Lite might not be able to handle "application/octect-stream". Other than that, your syntax look okay (but I've always been bad at spotting syntax errors 8^)

Just Another Perl Wannabe

Replies are listed 'Best First'.
Re(2): MIME::Lite
by cjf-II (Monk) on Dec 21, 2002 at 02:13 UTC
    MIME::Lite might not be able to handle "application/octect-stream"

    From the docs:

    application
    Data which does not fit in any of the other categories, particularly data to be processed by some type of application program. application/octet-stream, application/gzip, application/postscript...

    --

      oops, thanks cjf-II, didn't see that when I read the docs. Thanks... Just Another Perl Wannabe