Hello,
I have WebWiz forums set up and everything works perfectly. However the
email feature does not work. My webserver has CDONTS, CDOSYS, &
ASPMail. I have various contact pages on my site which use CDONTS and
they work just fine. However I do not recieve any topic reply emails or
password requests as well.
I use the following code to send emails:
<% set sendmail = Server.CreateObject("CDONTS.NewMail")
%>
<%
sendmail.From = email
sendmail.To = "webmaster@claytonarts.org"
sendmail.Subject = subject
sendmail.Body ="From:" & username & vbCrlf & vbCrlf
& "Message:" & message & vbCrlf & vbCrlf &
"IP address:" & IPadd
sendmail.Importance = 1
sendmail.Send
%>
<%
Set sendmail = Nothing
%>
|
Is it possible to change settings in WWF to reflect my codes?
Thanks,
Ram0135