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!

HTML Webpage Mail

Status
Not open for further replies.

zib

Technical User
Feb 15, 2001
35
IN
I am creating a webpage with a option to send mail through the page (say hotmail.com). The mail is not working/not sent. Anyone could share the code and tips?

Thanks in advance!
 
What are you using at present? mailto, server-side? Perhaps you could just show us your page.

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
 
Johnwm, your reply was jet-speed. Thanks!!!

Actually it is mailto.

Right now the code is not with me. Can you tell me if there are any HTML application source coders...
 
You can't do this only with HTML.

If you use links of the form mailto:someone@somewhere, it'll use the user's mail client - e.g. Outlook - to send the mail. you can't build a hotmail-style interface on this basis.

If you want people to fill in fields on your webpage, click a button, and have it send a mail, you'll need to use some form of server-side language - perl, php, asp, etc... - to do the job for you. Your ISP may provide such a script for you, failing that try Googling for "formmail".

-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
 
Thanks Chris/Foamcow... it is the feedback from the visitors of my website that I need to receive in my mailbox (ex, zack@html.com) when they click the 'submit feedback' button.

How to do in HTML..?

Thanks
 
Can't be done in HTML. As it was said before, your form action could be mailto, but that is unreliable, as you never know if the person using the site has the mail client set up on their computer. I know a number of people who use only web-clients for their mail and they will not be able to use such a feedback form.

On the other hand you could process the form on the server and send the email like that. For that you would need to find out what server-side lanugage you have and ask your question in one of the fora that deals with that language.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top