The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Reporter::Transport::Net::SMTP::SSL - SMTP over SSL transport for Test::Reporter

SYNOPSIS

    my $report = Test::Reporter->new(
        transport => 'Net::SMTP::SSL',
        transport_args => [ %args ],
    );

DESCRIPTION

This module transmits a Test::Reporter report using Net::SMTP::SSL.

USAGE

See Test::Reporter and Test::Reporter::Transport for general usage information.

Transport Arguments

    $report->transport_args( @args );

Any transport arguments are passed through to the Net::SMTP::SSL constructer.

METHODS

These methods are only for internal use by Test::Reporter.

new

    my $sender = Test::Reporter::Transport::Net::SMTP::SSL->new( 
        @args 
    );
    

The new method is the object constructor.

send

    $sender->send( $report );

The send method transmits the report.

AUTHOR

Theodore Robert Campbell Jr, <trcjr at cpan.org>

BUGS

Please report any bugs or feature requests to bug-test-reporter-transport-net-smtp-ssl at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Reporter-Transport-Net-SMTP-SSL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Test::Reporter::Transport::Net::SMTP::SSL

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2010 Theodore Robert Campbell Jr

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.