| Workflow documentation | Contained in the Workflow distribution. |
Workflow::Action::Mailer - a stub for a SMTP capable action
This documentation describes version 1.01 of this package
Currently a stub
Copyright (c) 2003-2007 Chris Winters. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
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__