si che puoi...
fai un controlo javascript es:

<html>
<head>
<script language="javascript">

function mail() {
email = document.prova.email.value;
tel = document.prova.tel.value;

//verifico che i l'email sia in formato xxxxxx@xxx.xx
var mail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

if (!mail.test(email) || (email == "undefined"))
{
alert("Inserire un indirizzo email corretto!");
return false;
}

//verifico che il numero telefonico sia composto da soli numeri compreso il punto, la virgola, l'underscore e il trattino
var telef = /^([0-9])+$/;

if (!telef.test(tel) || (tel == "undefined"))
{
alert("Inserire un numero telefonico corretto! Sono consentiti solo caratteri numerici");
return false;
}
return true;
}

</script>
<title>prova</title>
</head>
<body>
<form name="prova" action="index2.html" method="POST" onsubmit="return mail();">
tel:

<input type="text" name="tel" />

mail

<input type="text" name="email" />

<input type="submit" value="invia">
</form>
</body>
</html>