Hi Slip777
It's best to indicate what the parse error says - it makes it easier to pinpoint the problem. However, the answer is quite simple: when you encapsulate a string with " ", PHP (and indeed any other programming language) starts at " and runs through the string until it reaches the next instance of " ... and then stops. You need to do this:
$content = "Name: " . $_POST["name"] . "\nE-Mail: " . $_POST["e-mail"] . "\nSubject: " . $_POST["subject"] . "\nMessege: " . $_POST["messege"];
The correct syntax for the collation point is: space point space (and message is spelled with 2 Es and 1 A 😃).
Finally, a parse error which says 'unexpected thingummy on line whatever' means you screwed up on the PREVIOUS line.
HTH
Norm