hola loco1, lo puedes lograr usando la funcion 
mail, aquí  te dejo un ejemplo que te hice con los mismos campos que tienes en tu pagina web:    
Código PHP:
Ver original- <? 
- if($_POST['enviar']){ 
-   
- if(empty($_REQUEST['nombre'])){ 
- echo 'Ingresa tu nombre correctamente'; 
- }elseif(empty($_REQUEST['email'])){ 
- echo 'Ingresa tu email correctamente'; 
- }elseif(empty($_REQUEST['telefono'])){ 
- echo 'Ingresa tu telefono correctamente'; 
- }elseif(empty($_REQUEST['consulta'])){ 
- echo 'Ingresa tu consulta correctamente'; 
- }else{ 
-   
- $nombre = $_POST['nombre']; 
- $email = $_POST['email']; 
- $telefono = $_POST['telefono']; 
- $consulta = $_POST['consulta']; 
- $asunto = "Cotacto desde la web"; 
- $mensaje = " 
- Nombre: $nombre \n 
- Email: $email \n 
- Telefono: $telefono \n 
- Consulta: $consulta  
- "; 
- mail($destino, $asunto, $mensaje,$enviado); 
- echo "se envio correctamente el mensaje"; 
-   
- }}else{ 
- ?> 
- <form action="" method="post"> 
- Nombre <input name="nombre" type="text" /><br> 
- Email <input name="email" type="text" /><br> 
- Telefono <input name="telefono" type="text" /><br> 
- Consulta <textarea name="consulta" ></textarea><br> 
- <input name="enviar" type="submit" value="Enviar"/> 
- </form> 
- <? 
- } 
- ?> 
cualquier duda que tengas puedes consulta en el 
foro de php  