dbusguy
10-25-2005, 10:14 PM
Got a suggestion for a web e-mail form.
It works and sends comments but my e-mail (OE) receives a file "POSTDATE.ATT".
OE doesn't know how to open this, neither do I.
How do I open it?
Here's the code to send the form.
Once sent, another web page opens to say thank-you.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Mailto Form with Thank You Page Redirect</title>
</head>
<body>
<div align="center">
<table border="4" width="40%" id="table1" cellspacing="5" cellpadding="4" bordercolor="#FF0000">
<tr>
<td>
<form method="POST" action="mailto:your@address.com" onsubmit=window.setTimeout("location.href='YOUR_THANK_YOU_PAGE.html'",5000)>
Your Name <input type="text" name="YourName" size="20"><br>
Your Email <input type="text" name="YourEmail" size="20"><br>
Your Message<br> <textarea name="YourMessage" rows="6" cols="25"></textarea><br>
<input type="submit" value="Send Email">
</form>
</td>
</tr>
</table>
</div>
</body>
</html>
It works and sends comments but my e-mail (OE) receives a file "POSTDATE.ATT".
OE doesn't know how to open this, neither do I.
How do I open it?
Here's the code to send the form.
Once sent, another web page opens to say thank-you.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Mailto Form with Thank You Page Redirect</title>
</head>
<body>
<div align="center">
<table border="4" width="40%" id="table1" cellspacing="5" cellpadding="4" bordercolor="#FF0000">
<tr>
<td>
<form method="POST" action="mailto:your@address.com" onsubmit=window.setTimeout("location.href='YOUR_THANK_YOU_PAGE.html'",5000)>
Your Name <input type="text" name="YourName" size="20"><br>
Your Email <input type="text" name="YourEmail" size="20"><br>
Your Message<br> <textarea name="YourMessage" rows="6" cols="25"></textarea><br>
<input type="submit" value="Send Email">
</form>
</td>
</tr>
</table>
</div>
</body>
</html>