I have an ASPRunner 6.0 Project that works fine sending e-mail using Sendmail
I take the SAME project and put it into 6.2. The Security details with e-mail server are identical. It won't send e-mail. It doesn't touch my e-mail server.
I realise that the Send E-Mail code is different for 6.2 so I do a test project with a single table and insert code to Send EMail if a record is added.
The code is:-
set tmpDict = CreateObject("Scripting.Dictionary")
tmpDict("to")="admin@ourcompanydomain.com"
tmpDict("subject")="Sample subject"
tmpDict("body")="Hello there" & vbcrlf & "Best regards"
set ret=runner_mail(tmpDict)
if not ret("mailed") then
response.write ret("message")
end if
It doesn't work either. I don't know wehere to start to debug this. I can't go to 6.2 if I can't get the e-mail to work.
Note that my testing is under iis on XP and also on an iis7 web. I HAVE to get it working on my XP machine first.
Regards,
Stuart