Changeset 2582439
- Timestamp:
- 08/13/2021 08:19:50 AM (5 years ago)
- Location:
- change-admin-email-setting-without-outbound-email/trunk
- Files:
-
- 4 deleted
- 2 edited
-
.buildpath (deleted)
-
.project (deleted)
-
.settings (deleted)
-
change-admin-email.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
tests (deleted)
Legend:
- Unmodified
- Added
- Removed
-
change-admin-email-setting-without-outbound-email/trunk/change-admin-email.php
r2579749 r2582439 4 4 Plugin URI: https://generalchicken.guru/change-admin-email/ 5 5 Description: Restores functionality removed since WordPress v4.9. Allows admin to change the admin email setting - without outbound email or recipient email credentials. 6 Version: 3. 06 Version: 3.1 7 7 Author: John Dee 8 8 Author URI: https://generalchicken.guru/ … … 20 20 wp_die('Something is very wrong here.'); 21 21 } 22 return;23 22 } 24 23 … … 58 57 $email = $_POST['new_admin_email']; 59 58 $domain = site_url(); 60 $url = "https://g neeralchicken.guru/wp-json/change-admin-email-plugin/v1/test-email";59 $url = "https://generalchicken.guru/wp-json/change-admin-email-plugin/v1/test-email"; 61 60 $response = wp_remote_post( $url, array( 62 61 'method' => 'POST', -
change-admin-email-setting-without-outbound-email/trunk/readme.txt
r2579749 r2582439 11 11 12 12 == Description == 13 This plugin allows an administrator to change the "site admin email", without sending a confirmation email from the server. This can be useful for testing purposes, localhost setups, or any other situation where outbound email is disabled. A new "feature" of WordPress 4.9 is that the administrator cannot change the site admin email without outgoing email setup on the server. This plugin restores the admin \'s ability to change this setting without sending a confirmation email. Note that the \'site admin email\' is the global email used for admin purposes on the site. It is the \'from\' address when the site sends an email. The \'site admin email\' may be different from the administrator\'s personal user email, which is associated with the administrator's user account.13 This plugin allows an administrator to change the "site admin email", without sending a confirmation email from the server. This can be useful for testing purposes, localhost setups, or any other situation where outbound email is disabled. A new "feature" of WordPress 4.9 is that the administrator cannot change the site admin email without outgoing email setup on the server. This plugin restores the admin's ability to change this setting without sending a confirmation email. Note that the "site admin email" is the global email used for admin purposes on the site. It is the "from" address when the site sends an email. The "site admin email" may be different from the administrator's personal user email, which is associated with the administrator's user account. 14 14 15 15 ## Usage
Note: See TracChangeset
for help on using the changeset viewer.