NAME
IO::Socket::CLI::SMTPS - Command-line interface to an SSL SMTP server.
VERSION
Version 0.04
SYNOPSIS
use IO::Socket::CLI::SMTPS;
my $smtp = IO::Socket::CLI::SMTPS->new(HOST => 'smtp.gmail.com');
$smtp->read();
do {
$smtp->prompt();
$smtp->read();
} while ($smtp->is_open());
DESCRIPTION
IO::Socket::CLI::SMTPS
provides a command-line interface to IO::Socket::INET6 and IO::Socket::SSL.
METHODS
See IO::Socket::CLI
.
BUGS
Does not verify SSL connections. Has not been tried with STARTTLS.
SUPPORT
CPAN Bug Tracker
Code, Pull Requests, alternative Issues Tracker
COPYRIGHT AND LICENSE
Copyright (C) 2012 by Ashley Willis <ashleyw@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.
SEE ALSO
IO::Socket::CLI, IO::Socket::INET6, IO::Socket::INET, IO::Socket::SSL, IO::Socket