I need to have the information that users enter in a form mailed to me. When I do it now it birngs up my e-mail service with an attachment of the form but when I try to access the attachment I get the following error:
"OE has removed access to the following unsafe attachment"
and then it gives the attachment name.
Is there any way to mail the form to me with out the user having to go into their email service?
The code I have now is as follows:
<html>
<form method="post" action="mailto:--my email--">
<input type="text" name="firstname" size="30">FirstName<br>
<input type="text" name="lastname" size="30">Last Name<br>
<input type="text" name="phone" size="30">Phone Number<br>
<input type="text" name="email" size="30">Email address<br>
<br>
<p>Description of work to be done:<br>
<textarea name="description" cols="30" rows="5">
</textarea>
</p><br>
<input type = "submit" value = "Send" name = "send">
</form>
</body>
</html>
"OE has removed access to the following unsafe attachment"
and then it gives the attachment name.
Is there any way to mail the form to me with out the user having to go into their email service?
The code I have now is as follows:
<html>
<form method="post" action="mailto:--my email--">
<input type="text" name="firstname" size="30">FirstName<br>
<input type="text" name="lastname" size="30">Last Name<br>
<input type="text" name="phone" size="30">Phone Number<br>
<input type="text" name="email" size="30">Email address<br>
<br>
<p>Description of work to be done:<br>
<textarea name="description" cols="30" rows="5">
</textarea>
</p><br>
<input type = "submit" value = "Send" name = "send">
</form>
</body>
</html>