use strict; package Email::Abstract::EmailMIME; use Email::Abstract::EmailSimple; BEGIN { @Email::Abstract::EmailMIME::ISA = 'Email::Abstract::EmailSimple' }; sub target { "Email::MIME" } sub construct { require Email::MIME; my ($class, $rfc822) = @_; Email::MIME->new($rfc822); } 1; =head1 NAME Email::Abstract::EmailMIME - Email::Abstract wrapper for Email::MIME =head1 DESCRIPTION This module wraps the Email::MIME mail handling library with an abstract interface, to be used with L =head1 SEE ALSO L, L. =cut