in reply to Re: Module for smtp mail server?
in thread Module for smtp mail server?

I have used Mail::Sendmail for a long time now to handle emailing of sorts. Ultra simple:
use Mail::Sendmail; my %message = (To => "some address", From => "your address", Subject => "subject", Message => "text"); sendmail(%message) or die $Mail::Sendmail::error;
That's it. Set up your smtp server(s) in Sendmail.pm in %mailcfg at the top.