As stated in subject.

How do i do it? I'm doing it on Eclipse Galileo using php.

Would really appreciate the help.

link|improve this question

60% accept rate
feedback

2 Answers

Just like this:

mail('to@email.com', 'subject', 'message body');

See the php mail() documentation for more advanced usage.

link|improve this answer
Hi i would like to do it inside a button. How do i do it? <input type="text" id="search" name="search"/><input type="submit" value="search" name="search"/> – cheesebunz Jul 22 '11 at 8:25
Have the button post to the PHP page that your mail code is on. – JonLim Jul 22 '11 at 16:24
@cheesebunz - Set your form tag's action attribute to the path of your PHP script. – Jesse Bunch Jul 22 '11 at 18:58
feedback

You can use php mail function simply. But I would suggest you to use PHPMailer. PHPMailer library has lots of options. You can set attachment, message as text or html, bcc, cc, reply to very easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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