1Net::SMTP::SSL(3) User Contributed Perl Documentation Net::SMTP::SSL(3)
2
3
4
6 Net::SMTP::SSL - SSL support for Net::SMTP
7
9 use Net::SMTP::SSL;
10
11 my $smtps = Net::SMTP::SSL->new("example.com", Port => 465);
12
14 Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
15 network operations. Due to the nature of "Net::SMTP"'s "new" method, it
16 is not overridden to make use of a default port for the SMTPS service.
17 Perhaps future versions will be smart like that. Port 465 is usually
18 what you want, and it's not a pain to specify that.
19
20 For interface documentation, please see Net::SMTP.
21
23 Net::SMTP, IO::Socket::SSL, perl.
24
26 Casey West, <casey@geeknest.com>.
27
29 Copyright (c) 2004 Casey West. All rights reserved.
30 This module is free software; you can redistribute it and/or modify it
31 under the same terms as Perl itself.
32
33
34
35perl v5.12.0 2004-07-20 Net::SMTP::SSL(3)