Email notifications for users and admins

Solved5.87K viewsGeneralemail notification subscribe
0

Hello, i’m trying to setup email notifications for users and admins such as a forum. But currently i cannot find any options about.

There are only some settings to send email to a specific address but it’s not what i need.

Every user should be able to manually/automatic subscribe to specific questions and be notified.

Is there any solution?

Question is closed for new answers.
selected answer
1

I’ve solved my issue

In my case it’s because i’m using wp-mail-smtp as mail service and it seems that doesn’t work with wp-json since in this kind of ajax calls plugins are deactivated.

So i’ve create a mu-plugin with this line inside:

require_once WP_PLUGIN_DIR . “/wp-mail-smtp/wp_mail_smtp.php”; // force mail plugin load

 

in this way i force wp-mail-smtp to be loaded as a “must used” plugin and now it works.

commented on answer

Thansk for letting me know. But if a plugin is preventing default WP function that it must be a bug, please let plugin author know about it.

You are viewing 1 out of 2 answers, click here to view all answers.