See METHODS in Mail::Reporter
Returns a new Email::Simple object based on the information from a Mail::Message object. The MESSAGE specified is an instance of a Mail::Message.
my $convert = Mail::Message::Convert::EmailSimple->new; my Mail::Message $msg = Mail::Message->new; my Mail::Internet $copy = $convert->export($msg);
Returns a new Mail::Message object based on the information from an Email::Simple.
my $convert = Mail::Message::Convert::EmailSimple->new; my Mail::Internet $msg = Mail::Internet->new; my Mail::Message $copy = $convert->from($msg);