in reply to Re: Need help parsing email using MIME::Parser
in thread Need help parsing email using MIME::Parser
I figured it out. I knew it seemed stupid to not have some method of reading the unencoded file directly using the $entity that's already defined and accessing the full email.
I just came across this:
### Read the (unencoded) body data: if ($io = $ent->open("r")) { while (defined($_ = $io->getline)) { print $_ } $io->close; }
|
|---|