document.title = 'blablabla'
Не особо важно, если на сервере есть проверка метода и урл запроса не будет обрабатывать левые данные то все ок.
<?php
$email = test_input($_POST['email']);
if (!filter_var($email, FILTER_VALIDATE_EMAIL))
echo '<p class="error">Invalid email format</p>';
else if (mail('glbalshop@mail.ru', 'Contact Us', "email: $email\r\ntel: " . test_input($_POST['tel']) . "\r\nmessage: " . test_input($_POST['msg']), 'From: ' . test_input($_POST['email']))) {
echo '<p>Message has been sent</p>';
} else
echo '<p class="error">Sorry, sending the message failed. Please try again.</p>';
function test_input($data)
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}