Registration ASP page not sending password email |
Post Reply |
Author | |
LogSat
Admin Group Joined: 25 January 2005 Location: United States Status: Offline Points: 4104 |
Post Options
Thanks(0)
Posted: 13 June 2003 at 12:39am |
There is a bug in beta .152 that (again) causes self-registration emails to not be sent. It will be fixed in the next build, in the meantime a simple change in tha ASP code will fix the problem as well. Please make the following addition in red to the Register.asp page: rs.AddNewrs("EMailFrom") = "System Administrator <>" rs("EMailTo") = EMail rs("Subject") = "Your quarantine area password" rs("MsgID") = MsgID rs("MsgDate") = MessageDate rs("Expire") = 0 rs("Deliver") = 1 rs("RejectDetails") = "" rs("RejectID") = 0 rs("ServerID")=0
rs.Update rs.Close Set rs = Nothing Also, to manually deliver all emails generated but not sent, issue a query on the tblQuarantine to change all records with "ServerID IS NULL" to "ServerID=0" like so:
UPDATE tblQuarantine
SET ServerID = 0 WHERE (ServerID IS NULL) Roberto Franceschetti |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
This page was generated in 0.152 seconds.