I am not sure at all, but I think you got that order wrong. Instead of
mail($recipient, $subject, $mailheaders, $personal_name);
try:
mail($recipient, $subject, $personal_name, $mailheaders);
Also be sure to use all quotations:
mail("$recipient", "$subject", "$personal_name", "$mailheaders");
Note that using this line only will turn "$personal_name" into the whole message body.