Author |
Topic |
|
MikePS65
Starting Member
3 Posts |
Posted - 28 February 2008 : 21:23:02
|
Sorry for what is probably a dummy question, but I could use some help. My email server settings seem, at least to some degree, to be correct, since I can successfully send mails through the forum, and the subscription mails come through fine. What I'm not able to do is to figure out how to get the forum to send mails to the admin when a new member is waiting to be approved, or send a moderator mails when a posting is pending approval by that moderator. I feel certain these features must be available since I haven't found too many other questions about it, but I can't figure out what I'm doing wrong or what setting I'm not setting right. I'd be grateful for any insight into this issue - thanks! |
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 29 February 2008 : 01:54:12
|
these features are not available in the base Snitz |
|
|
MikePS65
Starting Member
3 Posts |
Posted - 29 February 2008 : 02:34:37
|
Thanks much for responding so quickly. I found that by subscribing to a forum for which I'm a moderator, I do receive email alerts when someone has posted something I need to approve/deny.
And I was able to track down right here in these forums a little chunk of code for the register.asp file that does a nice job of sending me an email when a new member is trying to sign up.
Anyway, thanks again! I do appreciate it.
-Mike |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 29 February 2008 : 10:25:18
|
quote: I found that by subscribing to a forum for which I'm a moderator, I do receive email alerts when someone has posted something I need to approve/deny
good point, I hadn't thought about doing that way |
|
|
cadfhs
New Member
United Kingdom
77 Posts |
Posted - 07 March 2008 : 12:51:10
|
Mike I'm a bit brain dead at the moment, I am interested in the bit about admins receiving emails when someone registers. But, I can not seem to work out which code I need where. Is there any possibility that could post it on here? |
|
|
ruirib
Snitz Forums Admin
Portugal
26364 Posts |
|
MikePS65
Starting Member
3 Posts |
Posted - 07 March 2008 : 16:36:33
|
This is what another user had posted, and what I ended up using successfully...
Add the following chunk of code to register.asp after line 602 (after the server-side include of inc_mail.asp):
'################################### Administrator Notification Mod ########################
strRecipientsName = strSender strRecipients = strSender strFrom = strSender strFromName = strSender strsubject = strForumTitle & " Registration " strMessage = Request.Form("Name") & " (" & Request.Form("Email") & ") has registered at " & strForumURL %> <!--#INCLUDE FILE="inc_mail.asp" --> <% '###################################################################################### |
|
|
cadfhs
New Member
United Kingdom
77 Posts |
Posted - 09 March 2008 : 14:33:16
|
Ruirib/Mike - I am a bit stuck with it, how many %> <!--#INCLUDE FILE="inc_mail.asp" --> <% should there be? Just one?
Been on the SnitzBitz and down loaded the text files but not sure on the above. |
|
|
|
Topic |
|