quote:
Originally posted by kwhipp
quote:
Originally posted by pentiummx
How do I assign this functionality to 'administrators' and moderators as well.
Right now, the capability to send email to all is restricted ONLY to the superadmin.
Pls. advise.
thanks,
Armand
The only people that can send email to all users are admins that have access to the admin_home.asp page.
For all admins to have access to this option, on admin_home.asp change this:
"<!--##### Email All Users Mod 3.4a #####-->" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_emaillist.asp"">E-mail List</a>"
if MemberID = intAdminMemberID then
Response.Write " <font size=""1"">(<a href=""javascript:openWindow3('admin_pop_mail.asp')"">Email All Users</a>)</font>"
end if
Response.Write "</span></LI>" & vbNewLine & _
"<!--####################################-->" & vbNewLine & _
to this:
"<!--##### Email All Users Mod 3.4a #####-->" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_emaillist.asp"">E-mail List</a> <font size=""1"">(<a href=""javascript:openWindow3('admin_pop_mail.asp')"">Email All Users</a>)</font></span></LI>" & vbNewLine & _
"<!--####################################-->" & vbNewLine & _