| Email-Sender documentation | Contained in the Email-Sender distribution. |
Email::Sender::Transport::DevNull - happily throw away your mail
version 0.110001
This class implements Email::Sender::Transport. Any mail sent through a DevNull transport will be silently discarded.
Ricardo Signes <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Email-Sender documentation | Contained in the Email-Sender distribution. |
package Email::Sender::Transport::DevNull; BEGIN { $Email::Sender::Transport::DevNull::VERSION = '0.110001'; } use Moose; with 'Email::Sender::Transport'; # ABSTRACT: happily throw away your mail sub send_email { return $_[0]->success } __PACKAGE__->meta->make_immutable; no Moose; 1; __END__