in reply to Re^2: MTA for Perl
in thread MTA for Perl

To qualify that a bit, MIME::Lite still works well for sending. If I were starting out with a fresh project where sending mail is a core functionality, I would maybe also look at Email::Sender or one of the other modules. But in my case, sending mail is usually a requirement that requires little beyond sending an HTML and/or text mail with some files attached, and that is well implemented by MIME::Lite. Usually not even the recipient mail addresses are supplied by the user, so the inputs are fairly trusted and the scripts also only talk to my MTA for handing off the mail and later forwarding.

Replies are listed 'Best First'.
Re^4: MTA for Perl
by Bod (Parson) on Mar 19, 2024 at 10:09 UTC

    Thanks for the clarification.

    But in my case, sending mail is usually a requirement that requires little beyond sending an HTML and/or text mail with some files attached, and that is well implemented by MIME::Lite.

    Exactly - my requirements in this case are much the same without a need for attachments. I have a module written that is working elsewhere without issue that I can simply drop in to the new project. The question was never about the Perl module...it was about recommendations for an MTA that will work with Perl.

    ...and the scripts also only talk to my MTA...

    What MTA do you use Corion?

      I use Exim 4, mainly because that is what comes with Debian as default (or what I install into Debian by default). For my uses, Exim 4 provides all I need.