use Mail::Sendmail; my %mail = ( To => "$emailAddys", From => "whatever\@mail.edu", Subject => "$subject", Message => "@body", ); $mail{smtp} = 'smtp.mail.edu'; sendmail(%mail) or die "\nDoh! $Mail::Sendmail::error\n";