in reply to Selecting an Email Package?

For quick and dirty I-just-need-to-send-a-damn-email tasks, I tend to use the poorly named Mail::Sendmail which really has nothing to do with sendmail.

For anything bigger I tend to jump straight up to Mail::Box which is an enormous framework that tries to do absolutely everything even vaguely e-mail related, mostly achieving that aim with some panache.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name