I work for a bank and have created a Suggestion Box for our employees which will be placed on our intranet. The challenge I have is that when an employee sends a suggestion by email that the individual who is to receive these suggestions can tell who the email is from. Does anyone know some code that would send the email but not show who it is from?
Below is what I have so far.
Thank you!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Suggestion Box
</title>
<link rel="stylesheet"
type="text/css"
href="css.css">
</head>
<body>
<form action="MAILTO:rlang@firstfd.com"
method="post"
enctype="text/plain"></form>
<div align="center">
<table border="1"
width="65%"
style="border-collapse: collapse"
bordercolor="#91A2AA"
id="table2"
summary="">
<tr>
<td>
<div align="center">
<br>
<table width="83%"
style="border-collapse: collapse"
id="table3"
summary="">
<tr>
<td colspan="2"
class="font10"
style="text-align: center">
<b><font size="2">Suggestion Box</font></b>
</td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
<tr>
<td class="base8"
width="87%"
colspan="2">
Entering your name and email address is optional. It is recommended that you
enter
</td>
</tr>
<tr>
<td class="base8"
colspan="2">
your name and/or email address if you need or want to be contacted.
</td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
<tr>
<td class="font10">
<strong>Your Name</strong> <font size="1">(optional)</font>:
</td>
<td width="59%">
<input type="text"
name="name"
size="44">
</td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
<tr>
<td width="39%"
class="font10">
<strong>E-Mail Address:</strong> <font size="1">(optional)</font>:
</td>
<td width="59%">
<input type="text"
name="mail"
size="44">
</td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
<tr>
<td class="font10"
valign="top">
<strong>Comment:</strong>
</td>
<td>
<textarea rows="13"
cols="33"></textarea>
</td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
<tr>
<td>
</td>
<td>
<p align="center">
<a href=
"mailto:rlang@firstfd.com?subject=Comments%20from%20the%20Suggestion%20Box"><input type="submit"
value="Send"
style="font-family: Verdana; font-size: 10pt"></a></td>
</tr>
<tr>
<td colspan="2"
height="15"></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>


Reply With Quote

Bookmarks