/    Sign up×
Community /Pin to ProfileBookmark

if i have a text field, how can i make what ever is typed in there sent to my email?
thanks
yanglers

[URL=http://corvettehelp.bravehost.com]check this out[/URL]

to post a comment
Full-stack Developer

2 Comments(s)

Copy linkTweet thisAlerts:
@yanglersauthorMar 06.2004 — now i have the code but i dont know what i am doing could you help me insert what is needed here is the code

<form action="mailer.php" method="post">

Name: <input type="text" name="name">

Email: <input type="text" name="email">

Message: <textarea name="message"></textarea>

<input type="submit" name="submit" value="Submit Form">

</form>

<?PHP

#######################################################

# This script is Copyright 2003, Infinity Web Design #


# Distributed by http://www.webdevfaqs.com #


# Written by Ryan Brill - [email][email protected][/email] #


# All Rights Reserved - Do not remove this notice #


#######################################################

## The lines below need to be edited...



###################### Set up the following variables ######################

#


$to = "[email protected]"; #set address to send form to

$subject = "Results from your Request Info form"; #set the subject line

$headers = "From: Form Mailer"; #set the from address, or any other headers

$forward = 0; # redirect? 1 : yes || 0 : no

$location = "thankyou.htm"; #set page to redirect to, if 1 is above

#


##################### No need to edit below this line ######################

## set up the time ##



$date = date ("l, F jS, Y");

$time = date ("h:i A");

## mail the message ##



$msg = "Below is the result of your feedback form. It was submitted on $date at $time.nn";

if ($_SERVER['REQUEST_METHOD'] == "POST") {

foreach ($_
POST as $key => $value) {

$msg .= ucfirst ($key) ." : ". $value . "n";

}

}

else {

foreach ($_GET as $key => $value) {

$msg .= ucfirst ($key) ." : ". $value . "n";

}

}

mail($to, $subject, $msg, $headers);

if ($forward == 1) {

header ("Location:$location");

}

else {

echo "Thank you for submitting our form. We will get back to you as soon as possible.";

}

?>

thanks
×

Success!

Help @yanglers spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...