http://qs321.pair.com?node_id=151354


in reply to Most reliable mail module

I prefer to use MIME::Lite for generating the email itself and Net::SMTP for sending the email. MIME::Lite for me is a no-brainer because it makes it totally painless to add attachments, etc. I like to use Net::SMTP when it comes to actually sending the mail for a few reasons: The power of Net::SMTP comes at a price: more code. It won't be a one or two liner to send mail anymore because you'll need to handle the complete SMTP transaction with error checking, etc.