1Email::Send::Sendmail(3U)ser Contributed Perl DocumentatiEomnail::Send::Sendmail(3)
2
3
4
6 Email::Send::Sendmail - Send Messages using sendmail
7
9 use Email::Send;
10
11 Email::Send->new({mailer => 'Sendmail'})->send($message);
12
14 This mailer for "Email::Send" uses "sendmail" to send a message. It
15 does not try hard to find the executable. It just calls "sendmail" and
16 expects it to be in your path. If that's not the case, or you want to
17 explicitly define the location of your executable, alter the
18 $Email::Send::Sendmail::SENDMAIL package variable.
19
20 $Email::Send::Sendmail::SENDMAIL = '/usr/sbin/sendmail';
21
22 Any arguments passed to "send" will be passed to "sendmail". The "-t
23 -oi" arguments are sent automatically.
24
26 Email::Send, perl.
27
29 Current maintainer: Ricardo SIGNES, <rjbs@cpan.org>.
30
31 Original author: Casey West, <casey@geeknest.com>.
32
34 Copyright (c) 2004 Casey West. All rights reserved.
35 This module is free software; you can redistribute it and/or modify it
36 under the same terms as Perl itself.
37
38
39
40perl v5.8.8 2006-12-07 Email::Send::Sendmail(3)