README
1Net-SMTPS version 0.01
2======================
3
4 This module implements a wrapper for Net::SMTP, enabling
5 over-SSL/STARTTLS support. This module inherits all the methods from
6 Net::SMTP. You may use all the friendly options that came bundled with
7 Net::SMTP. You can control the SSL usage with the options of new()
8 constructor method. 'doSSL' option is the switch, and, If you would
9 like to control detailed SSL settings, you can set SSL_* options that
10 are brought from IO::Socket::SSL. Please see the document of
11 IO::Socket::SSL about these options detail.
12
13 Just one method difference from the Net::SMTP, you may select SMTP AUTH
14 mechanism as the third option of auth() method.
15
16INSTALLATION
17
18To install this module type the following:
19
20 perl Makefile.PL
21 make
22 make test
23 make install
24
25DEPENDENCIES
26
27This module requires these other modules and libraries:
28
29 Net::SMTP
30 IO::Socket::SSL
31 Authen::SASL
32
33COPYRIGHT AND LICENCE
34
35Put the correct copyright and licence information here.
36
37Copyright (C) 2013 by Tomo
38
39This library is free software; you can redistribute it and/or modify
40it under the same terms as Perl itself, either Perl version 5.12.3 or,
41at your option, any later version of Perl 5 you may have available.
42
43
44