Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - email_notify_subscriptions admin
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

email_notify_subscriptions admin

 Post Reply Post Reply
Author
BrownGhost View Drop Down
Groupie
Groupie


Joined: 26 November 2002
Status: Offline
Points: 193
Post Options Post Options   Thanks (0) Thanks(0)   Quote BrownGhost Quote  Post ReplyReply Direct Link To This Post Topic: email_notify_subscriptions admin
    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
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 26 June 2006 at 10:06am
Sorry I do not understand what you are asking
Back to Top
BrownGhost View Drop Down
Groupie
Groupie


Joined: 26 November 2002
Status: Offline
Points: 193
Post Options Post Options   Thanks (0) Thanks(0)   Quote BrownGhost Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post 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.
Back to Top
BrownGhost View Drop Down
Groupie
Groupie


Joined: 26 November 2002
Status: Offline
Points: 193
Post Options Post Options   Thanks (0) Thanks(0)   Quote BrownGhost Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 26 June 2006 at 9:00pm
Isn't it simpler just to tell your moderators they need to sign up to email notification?
Back to Top
BrownGhost View Drop Down
Groupie
Groupie


Joined: 26 November 2002
Status: Offline
Points: 193
Post Options Post Options   Thanks (0) Thanks(0)   Quote BrownGhost Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
gariputro View Drop Down
Newbie
Newbie
Avatar

Joined: 17 October 2006
Location: United States
Status: Offline
Points: 13
Post Options Post Options   Thanks (0) Thanks(0)   Quote gariputro Quote  Post ReplyReply Direct Link To This Post 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="group1@mydomain.com"
  Case "3"
    strUserEmail="group2@mydomain.com"
  Case "4"
    strUserEmail="group1@mydomain.com"
  Case "5"
    strUserEmail="group9@mydomain.com"
  Case Else
    strUserEmail="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


Edited by gariputro - 26 January 2007 at 2:25pm
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.