
Test::Reporter::Transport::Net::SMTP::TLS - Authenticated SMTP transport for Test::Reporter

my $report = Test::Reporter->new(
transport => 'Net::SMTP::TLS',
transport_args => [ User => 'Joe', Password => '123' ],
);

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

See Test::Reporter and Test::Reporter::Transport for general usage information.
$report->transport_args( @args );
Any transport arguments are passed through to the Net::SMTP::TLS constructer.

These methods are only for internal use by Test::Reporter.
my $sender = Test::Reporter::Transport::Net::SMTP::TLS->new(
@args
);
The new method is the object constructor.
$sender->send( $report );
The send method transmits the report.


Copyright (C) 2008 David A. Golden Copyright (C) 2008 Ricardo Signes All rights reserved.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.