I need an HTML code that lets people submit text to my email.. I need this ASAP!!!

  • Thread starter Thread starter Sinanna-san
  • Start date Start date
S

Sinanna-san

Guest
Within the Next few hours!? I know I can use Java Script! But, I've never messed around with Java SO! I need HTML PLEASE!!!
Fine Anything will work! Please Provide me with the code..or a site that will let me customize it..
Thanks to everyone who answered! I used Tim O's code. Thank you!
 
Hello,

This functionality can not be done with HTML alone; HTML is only a scripting language that tells browers how to display objects - not how to behave.

I would suggest using Javascript, ASP .NET, or PHP.

Good Luck!
 
Here's the code:

<a href="mailto:[email protected]">

E-mail Sinanna-san here!</a>

The 2 above lines should all be on one line together.

You can change the text "E-mail Sinanna-san here!" to whatever you want.

Change the e-mail addess to yours.

Simple.
 
<!doctype>
<html>
<head>
</head>
<body>
<a href="mailto:[email protected]">Insert Text Here (like Click Here to Email me!)<a>
</body>
</html>

this is the complete code, if the person clicks the text, (in this case, 'Insert Text Here', an email popup will popup :)

goodluck!
 
You don't need to use javascript you acn use it for validation but not for a form you can use simple post html input <input> commands. Lots of web servers offer email forms simple set up if I am lazy.
 
Back
Top