Hi all,
I'd like to get a web form that, when filled in and submitted sends the form contents to a set email address.
I realise I can kinda do this in HTML using
<form action="MAILTO:address@domain.com" method="post" enctype="text/plain">
but that relies on the client mail application to send, what I'd like is for it to be sent from the web server. I assume I need some server side scripting so it knows what to do... can anyone point me in the right direction?