Forum Moderators: coopster
<?php
//create short variable names
$name=$_POST['name'];
$email=$_POST['email'];
$feedback=$_POST['feedback'];
$toaddress = 'feedback@example.com';
$subject = 'Feedback from web site';
$mailcontent = "<html><body><a href='www.testmylink.com'>click here to test my link</a></body></html>";
$fromaddress = 'From: webserver@example.com';
mail($toaddress, $subject, $mailcontent, $fromaddress);
?>
Check out the PHP manual for some help:
[uk2.php.net...]
Scroll down and you`ll see some solutions.
dc