Custom Admin Menu "Send User Notification" template.
Evan Kirschenmann
WIthin the admin menu, under the "add user" tab, there is a checkbox to send an email to the newly created account you made. I tried customizing using the "welcome campaign" with the settings set to send the welcome email "When a new WordPress user is added to your site..." with role of "Customer". Currently, if you attempt to set it up this way, it asks the user if they want to subscribe, rather than sending the email I set up, which makes sense given how Mail Poet is intended to work.
For websites that don't allow people to create their own accounts, being able to customize this is essential. I presume the coder would need to hook into the wp_insert_user() function, or something similar.
Cheers!
Evan Kirschenmann
Hello,
To update on this, I was poking around in the wp admin menu files and found a much more accurate way of addressing the issue.
In /wp-admin/user-new.php, the only filter I have found so far that seems somewhat relevant is this one, on line 29 of the file "add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );",