Parse error: syntax error, unexpected '}' in /home6/hostink0/public_html/highsidedes

Hi There,

Trying to learn PHP and started with an email function.

I keep getting the error**- Parse error**: syntax error, unexpected ‘}’ in /home6/hostink0/public_html/highsidedesigns/mailer.php on line **20
**
Could someone please help? I am sure it is simple. Thanks so much.

----code----
<?php
if(isset($_POST[‘submit’]))

$to = "[email protected]"; 
$subject = "HighSide Designs Email";
$name_field = $_POST['name'];
$company_field = $_POST['company'];
$email_field = $_POST['email'];
$subject_field = $_Post['subject']
$message = $_POST['message'];

$body = "From: $name_field

Company: $company_field
E-Mail: $email_field
Subject: $subject_field
Message:
$message
";

echo "Data has been submitted to $to!";
mail($to, $subject, $body);

else {
echo “Error: Your Data Was Not Sent! Please Try Again Or Call 435-757-6215”;
}

?>