Email::Abstract::Plugin - a base class for Email::Abstract plugins


Email-Abstract documentation Contained in the Email-Abstract distribution.

Index


Code Index:

NAME

Top

Email::Abstract::Plugin - a base class for Email::Abstract plugins

METHODS

Top

is_available

This method returns true if the plugin should be considered available for registration. Plugins that return false from this method will not be registered when Email::Abstract is loaded.


Email-Abstract documentation Contained in the Email-Abstract distribution.

use strict;

package Email::Abstract::Plugin;

$Email::Abstract::Plugin::VERSION = '3.004';

sub is_available { 1 }

1;