Current location: Hot Scripts Forums » Programming Languages » PHP » php form to email


php form to email

Reply
  #1 (permalink)  
Old 08-10-09, 10:20 PM
doob doob is offline
Newbie Coder
 
Join Date: Jun 2008
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
php form to email

hi guys i got a little bit of a problem with mail() function;
how do i go about putting all of these values in the message part of the email? i know the 3rd parameter of mail() should be the message of the email..?

thanks!
Code:
<?php
$name = $_POST['name'];
$company = $_POST['company'];
$email = $_POST['email'];
$pnumber = $_POST['pnumber'];
$product = $_POST['product'];
$amount = $_POST['amount'];

mail("email@domain.com","domain.com Inquiry","","From: $name <$email>");
header("location:thanks.html"); 

?>
Reply With Quote
  #2 (permalink)  
Old 08-11-09, 05:56 AM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
PHP Code:

$sMessage='';

foreach (
$_POST as $k => $v)
  
$sMessage.=$k.' '.$v."\n";

mail("email@domain.com","domain.com Inquiry",$sMessage,"From: $name <$email>"); 
Be sure to validate and sanitize the data to avoid people spamming off your form.
Reply With Quote
  #3 (permalink)  
Old 08-13-09, 12:04 AM
doob doob is offline
Newbie Coder
 
Join Date: Jun 2008
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
hi thanks for your reply, do i use both yours and my code or just yours?
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Multi-Part/Step Email Form??? How to ?? davestar057 PHP 4 02-12-09 12:06 AM
Tute: Create Email based Contact Form Grabber PHP 3 05-31-06 03:11 AM
Easy to set up Email Form for novice muddle Script Requests 0 04-25-06 09:48 AM
php form script to more then one email? burnttoast PHP 9 07-15-05 09:57 AM


All times are GMT -5. The time now is 07:56 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.