guys... i am looking for a php form in which users should enter their name and email And a link should be sent to the email address entered by the user. this should be a same link for every users or can be different as per session id... (if possible) Thanks!
<? $subject = "Mail from us" $link = "Enter your link here"; $name = $_POST['name']; $email = $_POST['email']; //do some email validation..google it if you need help $result = mail($email, $subject, $link) or die("Could not send email"); echo "Thank you. Please check your email"; ?> this is a very basic one but it should work...