Yeah. ...
In the mail() function you are able to add certain headers (like: "FROM: Somename <email@where.com>") which gives it a personal touch.
To define which type you're using, you need to add the following header:
Content-Type: Another MIME header, telling MIME-compliant mail programs what type of content to expect in the message.
Plain Text
'MIME-Version: 1.0',
'Content-Type: text/plain; charset="iso-8859-2"'
You can add that to the header in the email.
// Mail Function
mail($Recipient, $Subject, $Message, [$Additional_Headers]);
Personally, I always add the header "FROM:", so you could have something like:
// Headers
$headers = 'FROM: '.$name.' <'.$email.'>'.
'MIME-Version: 1.0'.
'Content-Type: text/plain; charset="iso-8859-2"';
mail($to, $subject, $message, $headers);
~Brett