1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: Mailer.pm,v 1.7 2001/12/22 16:10:50 fukachan Exp $
#
package FML::Mailer;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use Carp;
use FML::Log qw(Log LogError);
=head1 NAME
FML::Mailer - Utilities to send mails
=head1 SYNOPSIS
use FML::Mailer;
my $obj = new FML::Mailer;
$obj->send( {
sender => 'rudo@nuinui.net',
recipient => 'kenken@nuinui.net',
message => $message,
});
where C<$message> is a C<Mail::Message> object to send.
If you want to sent plural recipinets,
specify the recipients as ARRAY HASH at C<recipients> parameter.
$obj->send( {
sender => 'rudo@nuinui.net',
recipients => [ 'kenken@nuinui.net', 'hitomi@nuinui.net' ],
message => $message,
});
If you send a file, you can specify the filename as a data to send.
use FML::Mailer;
my $obj = new FML::Mailer;
$obj->send( {
sender => 'rudo@nuinui.net',
recipient => 'kenken@nuinui.net',
file => "/some/where/file",
});
=head1 DESCRIPTION
It sends Mail::Message object.
=head1 METHODS
=head2 C<new()>
standard constructor.
=cut
# Descriptions: standard constructor
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: OBJ
sub new
{
my ($self) = @_;
my ($type) = ref($self) || $self;
my $me = {};
return bless $me, $type;
}
=head2 C<send($args)>
send the given C<message>.
$args can take the following arguments:
----------------------------------
sender string
recipient string
recipients HASH ARRAY
message Mail::Message object
file string
=cut
# Descriptions: send messages in the queue (queue flush).
# Arguments: OBJ($self) HASH_REF($args)
# Side Effects: queue changed
# Return Value: 1 or 0
sub send
{
my ($self, $args) = @_;
my ($config, $maintainer, $fp, $sfp) = ();
# $curproc is given in usual fml processes.
# but not in other programs.
if (defined $args->{ curproc }) {
$config = $args->{ curproc }->{ config } || undef;
$maintainer = $config->{ maintainer };
$fp = sub { Log(@_);}; # pointer to the log function
$sfp = sub { my ($s) = @_; print $s; print "\n" if $s !~ /\n$/o;};
}
# who is sender
my $sender = $args->{ sender } || $maintainer;
# recipient(s): expected to be given as string or HASH ARRAY
my $recipient = $args->{ recipient } || undef;
my $recipients = $args->{ recipients } || [ $recipient ] || undef;
# validate input argument
if ((defined($recipient) && ref($recipient) ne '') ||
(defined($recipients) && (ref($recipients)) ne 'ARRAY') ||
(not defined($args->{ message }))) {
return 0;
}
# Mail::Message object which is sent
my $message = $args->{ message } || undef;
my $file = $args->{ file } || undef;
if ($file && -f $file) {
use Mail::Message;
use FileHandle;
my $fh = new FileHandle $file;
$message = Mail::Message->parse( { fd => $fh } );
}
### main ###
use Mail::Delivery;
my $service = new Mail::Delivery {
log_function => $fp,
smtp_log_function => $sfp,
};
if ($service->error) { LogError($service->error); return 0;}
$service->deliver({
'smtp_sender' => $sender,
'recipient_array' => $recipients,
'message' => $message,
});
if ($service->error) { LogError($service->error); return 0;}
return 1;
}
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
FML::Mailer appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|