rustyrpage...
if you are going to put these forms out on the WEB, you need to think about who is going to be using them. You will probably find that many people may not have Outlook or Word installed on their machine. That being said, the solution you proposed is not a very commonly used one.
I would encourage you to just use basic html forms with php. here's an example on how you would create a very simple script that would do what you are talking about:
create a html document (let's say form.html):
<form method="post" action="sendemail.php">
your name: <input type="text" name="personName"><br>
your message: <textarea name="message"></textarea>
<input type="submit" value="send email">
</form>
create a php document (text document), and name it sendemail.php:
<?
$recipientEmail = "your@emailaddress.com";
$message = "You received an email from ".$_POST["personName"]."! The message is below:\r\n\r\n".$_POST["me
mail($recipientEmail,"Here
?>
that is the most basic way of doing this i could think of... and if you are just getting started in web development, PHP is a good language to start out with. The code i wrote for you today does require that you have a basic installation of php and a mail server of some sort. you can get php from http://php.net it is free.
let me know if that works out for you.
-Chris
Main Topics
Browse All Topics





by: rustyrpagePosted on 2004-02-04 at 15:05:48ID: 10275990
Okay, another option would be to somehow put the form in Outlook, have the user fill it out & then E-mail it to their super-intendent (etc etc)..we use Exchange....how can I have a public form that people can fill out.