Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
3  
What have you tried? Instead of typing "Sorry for disturbing you again" you could have typed "Php mail script" – Andrew Hall Jul 20 '12 at 8:29
Sending an email needs a server side language that contains a Mail API, like PHP, Java, etc. – reporter Jul 20 '12 at 8:32
I'm so sorry but I dont like the first statement. But, as a @reporter said, it needs a server side API agreement to do that... :) – andikurnia Jul 20 '12 at 8:38
So I found this javascript function: <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
1  
@MitikPopovici You can edit your question to add extra information you have rather than posting comments. I've moved your code into your question, you should delete your comment now. – vascowhite Jul 20 '12 at 8:58

closed as not a real question by Quentin, vascowhite, GDP, Jeremy Banks, Daniel Fischer Jul 20 '12 at 23:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Others are saying as much in comments, but...

You can't send an email directly from a browser. You need to connect to a server-side language (e.g., PHP) to get the email sent.

At the simplest, your method will depend on whether your webpage is generated by PHP (or equivalent) and uses frequent page reloads, or whether you are using an AJAX approach with minimal page reloads.

Either way you need to (1) extract the information out of your textarea / form, (2) get it to a server-side script, and then (3) have that script send the email for you. The details of each step depend on the overall method underlying the site.

share|improve this answer

In PHP flavor --

myform.php


<form method="POST" action="mailfrom.php" id="myform">
<textarea id="mytextarea" name="mytextarea" rows="5" cols="10" />
<input type="submit" name="submit" value="submit" />
</form>

and then mailfrom.php ----

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = $_POST['mytextarea'];
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>
share|improve this answer

You simply need a secondhand class, like PHPMailer

Or setup your own mail-server on the server and use php mail()

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.