Title: [Plugin: Subscribe2] Help Suscriber2 Email-Massive
Last modified: August 20, 2016

---

# [Plugin: Subscribe2] Help Suscriber2 Email-Massive

 *  Resolved [nyxer](https://wordpress.org/support/users/nyxer/)
 * (@nyxer)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/)
 * Suscriber2 Versión 8.4
 * I don’t like it, that everyone can send emails to everyone. Is there a way I 
   can prevent this?
 * edit the plugin?
 * how and where
 * Thanks!
 * [http://wordpress.org/extend/plugins/subscribe2/](http://wordpress.org/extend/plugins/subscribe2/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Matt Robinson](https://wordpress.org/support/users/mattyrob/)
 * (@mattyrob)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955465)
 * [@nyxer](https://wordpress.org/support/users/nyxer/),
 * You haven’t been very specific so I’m guessing you are talking about access to
   the Subscribe2->Send Email page. Only Registered users with a user level of Author
   or above can access this page.
 * If you don’t like that and want to change it it’s pretty easy with a little plugin(
   easier this way then editing the code so it is retained between updates)
 * Visit the [FAQ](http://wordpress.org/extend/plugins/subscribe2/faq/) page and
   look for the question “I want to change the kinds of users who can access the
   Subscribe2 menus. Is that possible?”
 *  Thread Starter [nyxer](https://wordpress.org/support/users/nyxer/)
 * (@nyxer)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955469)
 * I say add the code ..
 *     ```
       function s2_admin_changes( $capability, $menu ) {
           // $capability is the core WordPress capability to allow admin page access
           // $menu is the title of the page:
           //  'user' for access to personal subscription settings
           //  'manage' to allow access to the user management screen
           //  'settings' to allow access to the plugin settings
           //  'send' for access to the Send Email page
   
           // identify the menu you are changing capability for first
           // then return a new capability
           if ( $menu == 'send' ) {
               return 'read';
           }
   
           return $capability;
       }
   
       add_filter('s2_capability', 's2_admin_changes', 10, 2);
       ```
   
 * in functions.php
 * add it, but go in with an account of a subscriber and I can send messages like,
   I want only administrators to send emails
 *  Thread Starter [nyxer](https://wordpress.org/support/users/nyxer/)
 * (@nyxer)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955470)
 * add the code,
    but I can still send messages to a subscriber account
 *  [Matt Robinson](https://wordpress.org/support/users/mattyrob/)
 * (@mattyrob)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955471)
 * [@nyxer](https://wordpress.org/support/users/nyxer/),
    You need to read the code
   a little more:
 * // identify the menu you are changing capability for first
    // then return a 
   new capability
 * So, you need to amend the capability, try using ‘manage_options’ instead of ‘
   read’.
 *  Thread Starter [nyxer](https://wordpress.org/support/users/nyxer/)
 * (@nyxer)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955474)
 * sorry no English, use google translator,.
 * I should do..
 * change the code, by which…
 *  [Matt Robinson](https://wordpress.org/support/users/mattyrob/)
 * (@mattyrob)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955512)
 * [@nyxer](https://wordpress.org/support/users/nyxer/),
 * Your English is good for a non-English speaker 🙂
 * Change:
    `return 'read';`
 * To:
    `return 'manage_options';`

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘[Plugin: Subscribe2] Help Suscriber2 Email-Massive’ is closed to new 
replies.

 * ![](https://ps.w.org/subscribe2/assets/icon-256x256.png?rev=2318630)
 * [Subscribe2 - Form, Email Subscribers & Newsletters](https://wordpress.org/plugins/subscribe2/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/subscribe2/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/subscribe2/)
 * [Active Topics](https://wordpress.org/support/plugin/subscribe2/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/subscribe2/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/subscribe2/reviews/)

## Tags

 * [email](https://wordpress.org/support/topic-tag/email/)
 * [massive](https://wordpress.org/support/topic-tag/massive/)

 * 6 replies
 * 2 participants
 * Last reply from: [Matt Robinson](https://wordpress.org/support/users/mattyrob/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-subscribe2-help-suscriber2-email-massive/#post-2955512)
 * Status: resolved