$top = MIME::Entity->build(Type =>"multipart/mixed",
From => "$name",
To => "$in{email_address}",
Cc => "$in{from}",
Subject => "$in{job_title}");
$top->attach(Path=>"$file_path");
$top->attach(Data=>$name);
$top->attach(Data=>$comment);
$top->attach(Data=>$city_state_zip);
$top->attach(Data=>$in{phone});
$top->attach(Data=>$in{email});
$top->attach(Data=>$in{education});
$top->attach(Data=>$in{interest});
$top->attach(Data=>$in{experience});
open (MAIL, "| /usr/lib/sendmail -t -oi -oem") or die "cant open: $!";
$top->print(\*MAIL);
close MAIL;