You'll want to look into the JQuery Post Method, as well as the Wordpress Codex on AJAX if you want to send the data without loading another page.
To have the form detect whether or not information has been sent without AJAX would require you to send the information to the same page via an empty action and fill the contents of your form with information conditional upon the existence of POST data. Example:
<form action="" method="POST">
<?php
if($_POST['submit'] === 'Send')
{
$to = 'your_email_here@admin.com';
$subject = 'Mail Form Submission';
wp_mail($to, $subject, $_POST['user_message']);
?>
<h1>Sent!</h1>
<?php
else
{
?>
<label for="user_name">Name</label>
<input type="text" name="user_name" />
<label for="user_email">Email</label>
<input type="text" name="user_email" />
<label for="user_message">Message</label>
<textarea name="user_message"></textarea>
<input type="submit" name="submit" value="Send">
<?php
}
?>
</form>
Let me know if this helps.