Workflow::Action::Mailer - a stub for a SMTP capable action


Workflow documentation Contained in the Workflow distribution.

Index


Code Index:

NAME

Top

Workflow::Action::Mailer - a stub for a SMTP capable action

VERSION

Top

This documentation describes version 1.01 of this package

SYNOPSIS

Top

DESCRIPTION

Top

CLASS METHODS

OBJECT METHODS

execute

Currently a stub

SEE ALSO

Top

Workflow
Workflow::Action

COPYRIGHT

Top

AUTHORS

Top

Jonas B. Nielsen (jonasbn) <jonasbn@cpan.org> is the current maintainer.

Chris Winters <chris@cwinters.com>, original author.


Workflow documentation Contained in the Workflow distribution.

package Workflow::Action::Mailer;

# $Id: Mailer.pm 454 2009-01-12 10:04:02Z jonasbn $

use warnings;
use strict;
use base qw( Workflow::Action );

$Workflow::Action::Mailer::VERSION = '1.01';

sub execute {
    my ($self) = @_;
    return 1;
}

1;

__END__