Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need to have the information that

Status
Not open for further replies.

jjinx

Programmer
Oct 6, 2002
12
US
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=&quot;post&quot; action=&quot;mailto:--my email--&quot;>
<input type=&quot;text&quot; name=&quot;firstname&quot; size=&quot;30&quot;>FirstName<br>
<input type=&quot;text&quot; name=&quot;lastname&quot; size=&quot;30&quot;>Last Name<br>
<input type=&quot;text&quot; name=&quot;phone&quot; size=&quot;30&quot;>Phone Number<br>
<input type=&quot;text&quot; name=&quot;email&quot; size=&quot;30&quot;>Email address<br>
<br>
<p>Description of work to be done:<br>
<textarea name=&quot;description&quot; cols=&quot;30&quot; rows=&quot;5&quot;>
</textarea>
</p><br>
<input type = &quot;submit&quot; value = &quot;Send&quot; name = &quot;send&quot;>
</form>
</body>
</html>
 
Is it your Email provider that is not allowing the form through to you? I Haven't had trouble with this before, I've made forms that work ok with the mailto: . Have you tried ? I use their cgi script which sees the form able to be mailed to me, although, info of a financial nature is best not transferred by that method, it works fine with normal stuff like a person's name etc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top