Jump to content

Need help


alevsky

Recommended Posts

Hi

I am not that greate with php ,so I am hopping that some of you will be able to help me.

Problem some what simple...

I need mail form ( and I try about 15-20  of the availiabe)  that could do very simple function, when user sended it, form must deliver two copy one to a person this email ment to be sent and a copy sholud be sent to a sender of the email.

Ok so if any one know a form that can do that,  I will greately appreciated.

 

 

Thanx in advance

 

Lev

 

Link to comment
Share on other sites

Not really the right forum, but it's not too hard assuming your webhost supports PHP and Mail.

 

contact.php

<html>
<body>
<form method="POST" action="contact2.php">

<div id="contact">
<h2>All fields are required</h2>

<p>Name:* <br /></p>
<input type="text" name="Name">
<p>Comments:* <br /></p>
<textarea name="Comments"></textarea>
<p>Email:* <br /></p>
<input type="text" name="Email">
<p><input type="submit" name="submit" value="Submit"></p>
</div>


</form>
</body>
</html>

 

contact2.php

 



<?php
$Subject = "Your Subject";
$Name = trim(addslashes($_POST['Name'])); 
$Comments = trim(addslashes($_POST['Comments'])); 
$Email = trim(addslashes($_POST['Email'])); 

// validation
$validationOK=true;
if ($Name =="") $validationOK=false;
if ($Comments =="") $validationOK=false;
if ($Email =="") $validationOK=false;
if (!$validationOK) {
  print "Missing Data";
echo "<meta http-equiv='refresh' content='2; URL=contact.php'>";
  exit;
}


// prepare email body text
$Body = "";
$Body .= "Name: ";
$Body .= $Name;
$Body .= "\n";
$Body .= "Comments: ";
$Body .= $Comments;
$Body .= "\n";
$Body .= "Email: ";
$Body .= $Email;
$Body .= "\n";

$EmailTo = "yourname@email.com, $Email"; //assuming commas work as a seperator, you may have to change this depending on what is an acceptable seperator

// send email 
$success = mail($EmailTo, $Subject, $Body, "From: <$Email>");



// redirect to success page 
if ($success){
  print "Email Sent";
echo "<meta http-equiv='refresh' content='2; URL=index.php'>";
}
else{
  print "Error, Email not Sent";
}
?>


Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.