• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

VBScript Help

JeffPell

n00b
Joined
Aug 24, 2005
Messages
49
When I am attempt to send emails via my web form I get the following error:

Error Type:
(0x8004020F)
The event class for this subscription is in an invalid partition
resume_sent.asp, line 23

Here is the script. If anyone can help I would greatly appreciate it.

<%
Dim objMail, objMailConf
Set objMail = Server.CreateObject("CDO.Message")
Set objMailConf = Server.CreateObject("CDO.Configuration")

objMailConf.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objMailConf.Fields.item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.server.net"
objMailConf.fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
objMailConf.Fields.item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

objMailConf.Fields.Update

Set objMail.Configuration = objMailConf
objMail.From = Request.Form("emailAddress")
objMail.To = "email@email.com"

objMail.Subject = Request.Form("emailSubject")
objMail.TextBody = Request.Form("emailText") & vbcrlf & "Home Phone Number: (" & Request.Form("homeArea") & ")" & Request.Form("homeNumber") & vbcrlf & "Work Phone Number: (" & Request.Form("workArea") & ")" & Request.Form("workNumber") & " x" & Request.Form("workExt") & vbcrlf & "Fax Number: (" & Request.Form("faxArea") & ")" & Request.Form("faxNumber")
objMail.Fields.Update
objMail.Send
Set objMail = Nothing
Set obMailConf = Nothing
%>
 
Back
Top