Hi Pat,
I would be inclined to store my data as a multi-dimensional array first - i.e.
my @data = ( [ 10234532, 'email information'],
[ 10235432, 'another email'],
[ 20345234, 'yet another email'] )
then you can sort on time as follows:
@sorted = sort {$a->[0] <=>...