| Mail::Transport::Sendmail(3pm) | User Contributed Perl Documentation | Mail::Transport::Sendmail(3pm) |
Mail::Transport::Sendmail - transmit messages using external Sendmail program
Mail::Transport::Sendmail is a Mail::Transport::Send is a Mail::Transport is a Mail::Reporter
my $sender = Mail::Transport::Sendmail->new(...); $sender->send($message);
Implements mail transport using the external 'Sendmail' program. When instantiated, the mailer will look for the binary in specific system directories, and the first version found is taken.
Some people use Postfix as MTA. Postfix can be installed as replacement for Sendmail: is provides a program with the same name and options. So, this module supports postfix as well.
WARNING: When you do bulk email sending with local delivery via Postfix, you can probably better use the SMTP backend to connect to postfix. The "sendmail" command delivers to "maildrop". From "maildrop", the "pickupd" will only sequentially insert messages into "cleanup". That process can take considerable elapse time. Directly inserting via "smtpd" will parallellize the cleanup process.
Extends "DESCRIPTION" in Mail::Transport::Send.
Extends "METHODS" in Mail::Transport::Send.
Extends "Constructors" in Mail::Transport::Send.
-Option --Defined in --Default
executable Mail::Transport undef
hostname Mail::Transport 'localhost'
interval Mail::Transport 30
log Mail::Reporter 'WARNINGS'
password Mail::Transport undef
port Mail::Transport undef
proxy Mail::Transport undef
retry Mail::Transport <false>
sendmail_options []
timeout Mail::Transport 120
trace Mail::Reporter 'WARNINGS'
username Mail::Transport undef
via Mail::Transport 'sendmail'
Extends "Sending mail" in Mail::Transport::Send.
-Option --Default
sendmail_options undef
Extends "Server connection" in Mail::Transport::Send.
Extends "Error handling" in Mail::Transport::Send.
Extends "Cleanup" in Mail::Transport::Send.
The "To", "Cc", and "Bcc" header information is only used if no "Received" was found. That seems to be the best explanation of the RFC.
As alternative, you may also specify the "to" option to some of the senders (for instance Mail::Transport::SMTP::send(to) to overrule any information found in the message itself about the destination.
This module is part of Mail-Transport distribution version 3.005, built on July 22, 2020. Website: http://perl.overmeer.net/CPAN/
Copyrights 2001-2020 by [Mark Overmeer]. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/
| 2022-10-14 | perl v5.34.0 |