line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Egg::Release::Mail; |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt> |
4
|
|
|
|
|
|
|
# |
5
|
|
|
|
|
|
|
# $Id: Mail.pm 333 2008-04-19 17:04:06Z lushe $ |
6
|
|
|
|
|
|
|
# |
7
|
2
|
|
|
2
|
|
814
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
75
|
|
8
|
2
|
|
|
2
|
|
27
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
105
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '0.06'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__END__ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Egg::Release::Mail - Package kit for Mail Sending. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=over 4 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=item * L<Egg::View::Mail> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
..... View to transmit mail. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Base> |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
..... Base class for E-mail controller. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Mailer::CMD> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
..... Mail is transmitted by the sendmail command. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Mailer::SMTP> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
..... Mail is transmitted with L<Net::SMPT>. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Encode::ISO2022JP> |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
..... Component for Japanese mail. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::MIME::Entity> |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
..... The content of the transmission is generated. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Plugin::EmbAgent> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
..... Plugin that adds client information to content of transmission. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Plugin::Jfold> |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
..... Plug-in with which each line of content of transmission is molded in arbitrary digit. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Plugin::Lot> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
..... Plugin that transmits mail of this content to two or more destinations. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Plugin::PortCheck> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
..... The operation of the mail server is confirmed before it transmits. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=item * L<Egg::View::Mail::Plugin::Signature> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
..... Plugin that adds famous etc. to content of transmission. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=item * L<Egg::Helper::View::Mail> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
..... Helper to generate E-mail controller. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=back |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 SEE ALSO |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
L<Egg::Release>, |
77
|
|
|
|
|
|
|
L<Net::SMTP>, |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 AUTHOR |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt> |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Copyright (C) 2008 by Bee Flag, Corp. E<lt>http://egg.bomcity.com/E<gt>, All Rights Reserved. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
88
|
|
|
|
|
|
|
it under the same terms as Perl itself, either Perl version 5.8.6 or, |
89
|
|
|
|
|
|
|
at your option, any later version of Perl 5 you may have available. |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=cut |
92
|
|
|
|
|
|
|
|