Your code is full of mistakes. You define $myemail and then never use that var again. You define $name and never use that either.
Then you call the mail function to send mail to a fake email address using variables you have not previously defined:
mail("example@example.com", "$subject", $message, "From:" . $email);
You are probably sending a lot of junk email to some poor bastard whose email address is example@example.com that has no $subject and no From address because you never bothered to define $email.
Perhaps most importantly, the script you are writing is easily an open relay that can be abused by any spam sender on the internet to send whatever message they want to whomever they like using header injection (q.v.).