I have a textarea and I want to insert text and send an email to someone. I was thinking about putting other 2 inputs like From-who sends the email and To-who receives the email and also I have the button Send Email.
Can someone tell me how can I get the text from the textarea and send the email to someone? Maybe if you have a solution in javascript or php would be nice.
I have found this javascript function:-
<script type="text/javascript">
function sayHi() {
var txtName = document.getElementById(email);
var txtOutput = document.getElementById(subject).value;
}
</script>
<script type="text/javascript"> function sayHi() { var txtName = document.getElementById(email); var txtOutput = document.getElementById(subject).value; } </script>– Mitik Popovici Jul 20 '12 at 8:41