October 2012

Solution found for base64 emails

I think I have a solution for base64 emails. I emailed Matthew Seaman on Wednesday about this issue. He put me onto two very useful Perl modules: Email::MIME mail/p5-Email-MIME Email::Simple mail/p5-Email-Simple/ Email::Simple::Header The solution is coded below: sub myGetMessage { my ($message); my ($encoding); while () { $message .= $_; } $encoding = myGetMessage_ContentTransferEncoding($message); print

Solution found for base64 emails Read More »

Scroll to Top