daub815
06-30-2004, 08:20 AM
The event class for this subscription is in an invalid partition
I got that error with the following code:
<%
Set msmail = Server.CreateObject("CDO.Message")
Set mscon = Server.CreateObject ("CDO.Configuration")
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
mscon.Fields.Update
Set msmail.Configuration = mscon
msmail.To = "kdaub@freylutz.com"
msmail.From = "daub815@yahoo.com"
msmail.Subject = "Test"
msmail.HtmlBody = "Testing"
msmail.Send
%>
If Someone Could Help, Then That Would Be Great. Thank You.
I got that error with the following code:
<%
Set msmail = Server.CreateObject("CDO.Message")
Set mscon = Server.CreateObject ("CDO.Configuration")
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
mscon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
mscon.Fields.Update
Set msmail.Configuration = mscon
msmail.To = "kdaub@freylutz.com"
msmail.From = "daub815@yahoo.com"
msmail.Subject = "Test"
msmail.HtmlBody = "Testing"
msmail.Send
%>
If Someone Could Help, Then That Would Be Great. Thank You.