Code:
<?php
if (isset($_POST['submit'])) {
     $formEmail = $_POST['formEmail'];
    $body = $_POST['body'];
    mail('[email protected]', 'Message from Skype', $body , 'From: ' . $fromEmail . "\n\r");  
     echo 'Thanks for Contacting us';
    } else {
    echo




'<!doctype html>
<html lang="en">
<head>
 <meta charset = "UTF-8">
<title> Contact Us </title>
</head>


<body>
<form action= "form.php" method="POST">
 	Email <br>
	<input type="text" name="fromEmail"> <br>
	Message <br>
 	<textarea name="body" cols="30" rows="10"></textarea>
        <br>
        <button type="submit" name="submit" value="submit"> Send Mail </button>
 </form>
</body>
</html>';}
http://php.flashwebhost.com/annie/form.php