Hey, I've tried several variations of ASP & PHP native & 3rd party mailer programs. I have hit a wall at almost every point between setting ini parameters from within the scripts to permission denied/transport fails.
I would be wasting time to show my examples for what I've tried so far. All my searches produce too many results with too many forums with too many 3rd party installations. I want to find the simplest way to set this up.
I don't care about fancy html formatting, attachments, colors, radio buttons, check boxes, etc... I would just love to find something with one text form field and a submit button that upon clicking it will send a simple email to me. I thought this would be a lot easier, but I never worked with IIS servers before.
A step by step approach or a link to a tested true resource would be greatly appreciated.
EDIT
The closest I got, with the least cryptic of error messages was with this asp code from tizag...
<%
'Sends an email
Dim mail
Set mail = Server.CreateObject("CDO.Message")
mail.To = Request.Form("To")
mail.From = Request.Form("From")
mail.Subject = Request.Form("Subject")
mail.TextBody = Request.Form("Body")
mail.Send()
Response.Write("Mail Sent!")
'Destroy the mail object!
Set mail = nothing
%>
The error I get back is:
CDO.Message.1 error '80040220'
The "SendUsing" configuration value is invalid.