FWIW I've got about 13 machines that run cron jobs and dump their info into a database, and then another cron job that runs later and generates a nice report and emails it.
And, I used MIME::Lite for the email functionality. Especially since the machine it is on does NOT have sendmail.
Well... the email server has been flaky and... if it isn't running when it is time to sent the email, then they simply don't get an email.
MIME::Lite (Score:2)
Repeat after me... MIME::Lite.
-Dom
Re:MIME::Lite (Score:2)
Re:MIME::Lite (Score:1)
What is the advantage of MIME::Lite if you have Sendmail ?
(What advantages other than cross platform.)
Re:MIME::Lite (Score:2)
- All kinds of MIME based shenanigans: attachments, HTML email etc.
- Send via SMTP, no need to worry about the implications of using another program
I like to use Mail::Sendmail if I'm just sending plain text emails, or MIME::Lite otherwise.Re:MIME::Lite (Score:2)
-Dom
Re:MIME::Lite (Score:1)
I do use MIME::Lite and just wanted a reminder.
FWIW I've got about 13 machines that run cron jobs and dump their info into a database, and then another cron job that runs later and generates a nice report and emails it.
And, I used MIME::Lite for the email functionality. Especially since the machine it is on does NOT have sendmail.
Well... the email server has been flaky and... if it isn't running when it is time to sent the email, then they simply don't get an email.
They don't like
Mail::Mailer too, don't forget (Score:1)