in reply to Mime file 2 mime mail

Do you want to SEND the mail from your perl script or do you want to GET the contents of the mime message in a readable way?

For getting the contents out of the multipart mime message, you could use MIME::Parser.

Replies are listed 'Best First'.
Re^2: Mime file 2 mime mail
by nathanvit (Beadle) on Jan 04, 2005 at 09:46 UTC
    >Do you want to SEND the mail from your perl script or
    >do you want to GET the contents of the mime message in a readable way?

    I'd like to send the message in the file in readable way to someone.
    I think the better way is:
    • OPEN the file
    • GET the message
    • PARSE it so it became readable
    • SEND it in readable way
    I do not know if it is the best way to do it so... this is the reason of this mail :-)