Print Page | Close Window

Webinterface wount send registering emails

Printed From: LogSat Software
Category: Spam Filter ISP
Forum Name: Spam Filter ISP Support
Forum Description: General support for Spam Filter ISP
URL: https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=3892
Printed Date: 31 July 2025 at 4:51am


Topic: Webinterface wount send registering emails
Posted By: Guests
Subject: Webinterface wount send registering emails
Date Posted: 30 June 2004 at 11:56am
Hi
 
I use the ASP version of the webinterface on a IIS server and the DB is MSSQL
 
When users register it connects and add the user and generates the password but it doesn't send the user the email.
 
If I get the username/password from the tbllogin table the user can log in fine and even select and "deliver selected" this is working as it should, but it absolutely refuses to send password to newly registered users, this baffles me as I can not see where it fails...
 
Any good ideas ??
I am using registered spamfilter 2.0.1.357
 
short version:
can register
can/will NOT send email to new registered users (basically, all is fine except this, and thus rendering it useless for me to give to my users)
can log in with new registered user
can send/deliver mail from quarantene
 



Replies:
Posted By: Desperado
Date Posted: 30 June 2004 at 5:27pm

Make sure your sql message query looks close to :

 Message = Message & "." & vbCRLF
 SQL = "SELECT * FROM tblMsgs WHERE 0 = 1"
 rs.Open(SQL)
 rs.AddNew
 rs("Msg") = Message
 rs.Update
 MsgID = rs("MsgID")
 rs.Close
 SQL="SELECT * FROM tblQuarantine WHERE 0 = 1"
 rs.Open(SQL)
 rs.AddNew
 rs("EMailFrom") = " mailto:support@yourdomain.com" CLASS="ASPForums" TITLE="WARNING: URL created by poster. - support@yourdomain.com "
 rs("EMailTo") = EMail
 rs("Subject") = "Your quarantine area password"
 rs("MsgID") = MsgID
 rs("MsgDate") = MessageDate
 rs("Expire") = 0
 rs("Deliver") = 1
 rs("ServerID") = 1  '(OR YOUR CORRECT SERVER ID)
 rs("RejectDetails") = ""
 rs("RejectID") = 0
 rs.Update
 rs.Close
 Set rs = Nothing

Regards,

Dan S.



Posted By: LogSat
Date Posted: 01 July 2004 at 12:07am

Ronny,

In the "Register.asp" page, can you try modifying the line:

rs("EMailFrom") = "System Administrator <>"

to something like:

rs("EMailFrom") = " mailto:someemail@yourdomain.com" CLASS="ASPForums" TITLE="WARNING: URL created by poster. - someemail@yourdomain.com "

Roberto F.
LogSat Software




Print Page | Close Window