Hi,
I run the forum on Linux / Chili!Soft ASP. Therefore I chose "Chili!Mail" in the Email Server Configuration form. However, I had to change some code in order to get it working. This is what I did:
Line 95 in inc_mail.asp
objNewMail.Send strSender, strRecipients, strSubject, strMessage
is changed to
objNewMail.Host = strMailServer
objNewMail.To = strRecipients
objNewMail.From = strSender
objNewMail.Subject = strSubject
objNewMail.Body = strMessage
objNewMail.Send
as described in this Chili!Soft web page.
Why is the original code written as it is? Is it a bug?
-Anders M