Hi there. I am currently working on a website. And on the contacts page i want there to be a form on it that you can directly send me a email from the page to my mail. I want the to be like 3 message boxes one with their mail, and one with the topic of the mail. and the last one with the message then a simpel send button. If any one knows how to do that please past a code in the comments or explain it to me some how. thank you
You can setup an email link " <a href"your email here">Text</a> " but this will just open the email client on the computer
You can make the FORM in HTML/CSS, but as others have said for it to actually send a mail you'll need server-side scripting to send the form data TO -- PHP is the easiest (IMHO) but the various flavors of ASP, or other languages like PERL, PYTHON or RUBY could also be leveraged to do this. FORM's are useless without something on the server to process the data from it.