<?php if (isset($_POST['msg'])) { echo "message sended! \n"; mail('caffinated@example.com', 'My Subject', $_POST['msg']); } ?> <form action="?" method="POST"> <textarea name="msg">message here...</textarea> </form>