Opened 2 years ago
Last modified 20 months ago
#16235 new enhancement
Site Welcome Email sent without regard to noconfirmation flag
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Future Release |
| Component: | Users | Version: | 3.1 |
| Severity: | normal | Keywords: | multisite has-patch |
| Cc: | tim@…, d@… |
Description (last modified by dd32)
In multisite and the super_admin adds a new user to a site,
if the user is new to the network, WP sends out the welcome email (but not the confirmation of being added to the site)
In my client's use case, they were looking for the SBD (silent but deadly) mode, as in no email at all should go out.
The language implies there is "no" notification but the welcome email belies that language.
if even the welcome email should be disabled, then
in wp-admin/user-new.php (around line 108)
adding
add_filter('wpmu_welcome_user_notification', ''__return_false');
would kill the new user notification from wpmu_activate_signup() (a few lines later)
Attachments (2)
Change History (11)
- Component changed from General to Users
- Keywords new user multisite added
- Type changed from defect (bug) to feature request
- Version set to 3.1
- Description modified (diff)
- Keywords needs-patch added; new user multisite removed
- Milestone changed from Awaiting Review to Future Release
- Type changed from feature request to enhancement
comment:6
markjaquith — 2 years ago
This looks good to me.
- Cc tim@… added
- Keywords has-patch added; needs-patch removed
Refreshed patch against current trunk.
- Cc d@… added
What about a filter in wp_new_user_notification() too, for similar end result?
comment:9
SergeyBiryukov — 20 months ago
Related: #15725

arggg - the second term of the add_filter should be the underline-underline_return_false function.