Hi, Email Script.

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
BoxingKing
Forum Newbie
Posts: 1
Joined: Wed May 25, 2005 10:34 am

Hi, Email Script.

Post by BoxingKing »

Hi,


I was wondering can anyone help me. What I need to know is it there a script that I can add to a HTML form that when someone feels it out with there email and click submit it emails me the information but from there email address?

Thank you.


:lol:
User avatar
phpScott
DevNet Resident
Posts: 1206
Joined: Wed Oct 09, 2002 6:51 pm
Location: Keele, U.K.

Post by phpScott »

Don't shout people will help you any way.
User avatar
Skara
Forum Regular
Posts: 703
Joined: Sat Mar 12, 2005 7:13 pm
Location: US

Post by Skara »

mail()

e.g.

Code: Select all

mail("you@someplace.net","Hello","This is my message","From: whoever@elsewhere.net\nReply-To: whoever@elsewhere.net");
Post Reply