jeandave
Starting Member
United Kingdom
20 Posts |
Posted - 18 December 2005 : 12:44:35
|
The Email system doesn't seem to work at all for my Snitz Forum. I've just started with the forgotten password, as this is easier to test. The system does say that an email has been sent, but nothing is sent. I've used a simple CDOSYS script to check that my server runs CDO and that is fine. This is the script that works on my server: <% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="jean@sharers.fsnet.co.uk" myMail.To="dave@clarknet.biz" myMail.TextBody="This is a message." myMail.Send set myMail=nothing %>
However, this script didn't work: [purple]<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="jean@sharers.fsnet.co.uk" myMail.To="dave@clarknet.biz" myMail.TextBody="This is a message." myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 'Name or IP of remote SMTP server myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.freeserve.com" 'Server port myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25 myMail.Configuration.Fields.Update myMail.Send set myMail=nothing %>
Just in case that script information will shed some light. Apart from that, the Snitz email doesn't work. Can someone help me to direct my investigations. I did read through some of the articles on here with simular problems, but they didn't help.
Thanks Dave |
Dave always trying to find the answer |
|