Print Page | Close Window

email_notify_subscriptions admin

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=20416
Printed Date: 08 April 2026 at 9:47am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: email_notify_subscriptions admin
Posted By: BrownGhost
Subject: email_notify_subscriptions admin
Date Posted: 24 June 2006 at 9:47pm
If this is not in admin mode then see if the user wants email notification of a forum


why is this made like this?
i want to admin a user and add his subscribtion so he will get mail when post are made in our team forum. but i cant..

is there any specifik reason why you made it this way ?




-------------
Thanks
BrownGhost

http://www.pitbull.dk" rel="nofollow - http://www.pitbull.dk



Replies:
Posted By: WebWiz-Bruce
Date Posted: 26 June 2006 at 10:06am
Sorry I do not understand what you are asking

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: BrownGhost
Date Posted: 26 June 2006 at 4:50pm
admin cant add forum subscribtion to a nother member for a hole forum.

Abselut bottom of this page: email_notify_subscriptions.asp

Select Forum to Subscribe to: this funktion is not there if i as admin, select to edit a user, and then edit his: Email Notification Subscriptions

-------------
Thanks
BrownGhost

http://www.pitbull.dk" rel="nofollow - http://www.pitbull.dk


Posted By: WebWiz-Bruce
Date Posted: 26 June 2006 at 6:17pm
The reason why the admin can't sign others up for forum notification is that users must do this themselves if they want email notifications of posts.

If they don't request this themselves then this could be considered as spam.

Having such a feature whereby the admin could force users to have email notification of all posts would be illegal in the US and Europe whereby anti-spam laws require that the user subscribe themselves to such a service.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: BrownGhost
Date Posted: 26 June 2006 at 6:39pm
hummm okay. well its then op to the admin not to brake that law, but in my forum i need to do this for my team members/moderators thy must be notifyid when some thing is postst in the moderator forum always. thats in there signed contract, so im going to move that funktion. so i as admin can do it :)

i just wantet to know if it would give code problems :)
thanks


-------------
Thanks
BrownGhost

http://www.pitbull.dk" rel="nofollow - http://www.pitbull.dk


Posted By: WebWiz-Bruce
Date Posted: 26 June 2006 at 9:00pm
Isn't it simpler just to tell your moderators they need to sign up to email notification?

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: BrownGhost
Date Posted: 26 June 2006 at 9:24pm
Humm true, ive made a online guide for them now, to follow, video, sound. so thy can do it probber :)

thanks.



-------------
Thanks
BrownGhost

http://www.pitbull.dk" rel="nofollow - http://www.pitbull.dk


Posted By: gariputro
Date Posted: 15 December 2006 at 4:48pm

-borg-, you can determine whether or not this should be posted due to the legality issues in the US and Europe.... I had the same issue in needing to send an email to a group (in our case, Technical Services) whenever a post was made in specific areas of our forum.

(All line references are approximations)

Sending email to a group by Category

/new_post.asp

Line 106 ADD
Dim intCatID   'Holds the cat ID

Line 108 ADD
intCatID = trim(Request.Form("cat"))

Line 1116 ADD (right after the two end if's)
'******************************
'***   Send Email Notification #2   ***
'******************************
strUserEmail=""
Select Case intCatID
  '2 = Category 1
  '3 = Category 2
  '4 = Forum Rules
  '5 = Internal Use Only
  Case "2"
    strUserEmail=" mailto:group1@mydomain.com - group1@mydomain.com "
  Case "3"
    strUserEmail=" mailto:group2@mydomain.com - group2@mydomain.com "
  Case "4"
    strUserEmail=" mailto:group1@mydomain.com - group1@mydomain.com "
  Case "5"
    strUserEmail=" mailto:group9@mydomain.com - group9@mydomain.com "
  Case Else
    strUserEmail=" mailto:admin@mydomain.com - admin@mydomain.com "
End Select
if strUserEmail<>"" then
  strEmailMessage = "*** TECH SERVICE EMAIL ***" & _
  "<br /><br />" & strTxtEmailClickOnLinkBelowToView & " : -" & _
  "<br /><a href=""" & strForumPath & "/forum_posts.asp?TID=" & lngTopicID & "&PID=" & lngMessageID & "#" & lngMessageID & """>" & strForumPath & "/forum_posts.asp?TID=" & lngTopicID & "&PID=" & lngMessageID & "#" & lngMessageID & "</a>"
  'If we are to send the post then attach it as well
  If blnSendPost = True Then strEmailMessage = strEmailMessage & "<br /><br /><hr />" & strPostMessage
    blnEmailSent = SendMail(strEmailMessage, decodeString(strUserName), decodeString(strUserEmail), strMainForumName, decodeString(strForumEmailAddress), decodeString(strEmailSubject), strMailComponent, true)
  end if


/include/message_form_inc.asp

Line 66 ADD
 <input type="hidden" name="cat" value="<%=intCatID%>">

/include/quick_reply_form_inc.asp
 
Line 201 ADD
vbCrLf & "      <input type=""hidden"" name=""cat"" id=""cat"" value=""" & intCatID & """ />" & _
 
*edit: corrected my case statement... had a little PHP syntax mixed in Big%20smile
*edit #2: moved the entire code body to ~line 1116 to also allow for replies to topics.
*edit #3: ammendment of quick reply form



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net