For one, you should never use a user-supplied e-mail address in the "From" e-mail header; instead, you should always use a valid e-mail address on your domain.
Also note that this code:
$headers = "From: $email_from";
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
is equivalent to this:
$headers = "From: $email_from";
since you're not actually adding (or "concatenating") the last two string pieces onto the end of $headers. That's a good thing, actually, considering you also don't have any line breaks (specifically, a CRLF) after the From header anyway.