Skip to content

Commit

Permalink
Fix #46
Browse files Browse the repository at this point in the history
  • Loading branch information
JUVOJustin committed Apr 8, 2024
1 parent 2ba411d commit 16cd4b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mail_Editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ private function define_admin_hooks() {
* New User Notification for enduser
*/
$this->loader->add_action( 'wp_new_user_notification_email', new New_User(), 'prepareSend', 10, 2 );
$this->loader->add_action( 'rest_insert_user', new New_User_Rest(), 'prepareSend', 12, 1 ); // Rest
$this->loader->add_action( 'rest_insert_user', new New_User_Rest(), 'prepareSend', 12, 3 ); // Rest
$this->loader->add_action( 'wp_new_user_notification_email_admin', new New_User_Admin(), 'prepareSend', 10, 2 );
$this->loader->add_action( 'rest_insert_user', new New_User_Admin_Rest(), 'prepareSend', 12, 1 ); // Rest
$this->loader->add_action( 'rest_insert_user', new New_User_Admin_Rest(), 'prepareSend', 12, 3 ); // Rest

/**
* Password Reset
Expand Down

0 comments on commit 16cd4b4

Please sign in to comment.