Well I use ASP to post messages. What I do is create a CDO object here's the code for that.
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Your Subject"
myMail.From="someone@somedomain.com"
myMail.To="you@yourdomain.com"
myMail.TextBody="Here goes the text"
myMail.Send
%>
vishesh
Nearly a Posting Virtuoso
1,381 posts since Oct 2006
Reputation Points: 85
Solved Threads: 42
The missing piece of information is the server-side language you're using. It would be better to post in the appropriate language-specific forum rather than the general HTML forum.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
Well, sorry for that, won't do that next time. Infact this is due to firefox, tabbed browsing, you open a large number of forums and when you read threads and reply u write something else. Again I apologize. I would start dreamweaver the moment I reach home and give appropriate answer.
vishesh
Nearly a Posting Virtuoso
1,381 posts since Oct 2006
Reputation Points: 85
Solved Threads: 42
Again, which server-side language are you using to process the form and generate the email?
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
If you're only using HTML and JavaScript, then you aren't doing things in a standard way. The methods that do work (such as setting the action tag of your form to "mailto:") are highly dependent on specific browsers, operating systems, and email clients. If you've jury-rigged something together that works, more power to you, but it's going to be extremely hard for anyone else to test or help.
Typically, form results are delivered to a web server application via a POST. The application process the results and performs any variety of actions, including sending the results via SMTP to an email address. Thus the assumption and repeated question of "which server-side language are you using?".
Again, there isn't any standardized "client-only" method of emailing form results.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37