| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Email form in HTML format
I have a simple form I created with text boxes and I want the user to fill out and when they hit submit instead of receiving all answers via TEXT in email can I have it arrive in email as HTML? <form action="MAILTO:myemail" method="post" enctype="text/plain"> I know this emails results in TEXT. ANY way to have it arrive HTML? Almost like a snapshot of my html web page. Thanks to anyone that can help or give advice! ![]() |
|
#2
|
|||
|
|||
|
email
This method actually pops up the default email program (ie outlook).
Are you looking for an asp mail form or php mail form or any other. To develop the form you need to specify what your server specs are (does your server have any email components). |
|
#3
|
||||
|
||||
|
be careful with mailto: because it's easy for robots to search the internet for mailtos and then spam the address:
Code:
<script language="JavaScript">
user = "you";
domain = "yourdomain.com";
document.write('<a href=\"mailto:' + user + '@' + domain + '\">');
document.write(user + '@' + domain + '</a>');
</script>
This way the robots can't find the email address.
__________________
If you found a post of mine helpful, please click on the on my post to add to my reputation.
|
![]() |
| Viewing: ASP Free Forums > Web Design > Web Layout > Email form in HTML format |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|