1Email::Send::Qmail(3) User Contributed Perl DocumentationEmail::Send::Qmail(3)
2
3
4
6 Email::Send::Qmail - Send Messages using qmail-inject
7
9 use Email::Send;
10
11 Email::Send->new({mailer => 'Qmail'})->send($message);
12
14 This mailer for "Email::Send" uses "qmail-inject" to put a message in
15 the Qmail spool. It does not try hard to find the executable. It just
16 calls "qmail-inject" and expects it to be in your path. If that's not
17 the case, or you want to explicitly define the location of your
18 executable, alter the $Email::Send::Qmail::QMAIL package variable.
19
20 $Email::Send::Qmail::QMAIL = '/usr/sbin/qmail-inject';
21
23 Email::Send, perl.
24
26 Current maintainer: Ricardo SIGNES, <rjbs@cpan.org>.
27
28 Original author: Casey West, <casey@geeknest.com>.
29
31 Copyright (c) 2004 Casey West. All rights reserved.
32 This module is free software; you can redistribute it and/or modify it
33 under the same terms as Perl itself.
34
35
36
37perl v5.36.0 2022-07-22 Email::Send::Qmail(3)