Bob Dodds wrote:
Yes, I need hand-holding. I see the point of sorting
recipients into per domain lists but I need examples
to learn how to implement it.

my @sorted_recipients = sort @{$self->recipients};

It doesn't get much easier than that. With an overloaded object, as long as one of the comparison operators is supported (e.g. 'cmp' and/or '<=>'), the sort operator Just Works(TM).

John

Reply via email to