use My_Mailer; my $mailer = My_Mailer->new(); for (my $x=0;$x < 10;$x++) { unless (fork) { $mailer->initialisation_stuff(); $mailer->send(); exit; } }