MyBB Community Forums

Full Version: Subscribe Forum - Notifications
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Good afternoon, everyone, 

When I subscribe to a forum, I receive an email as soon as a new reply has been written. Is there any way I can set it to notify me when ALSO a reply is changed? For that Problem I have already checked inc/datahandlers/post.php but i am not sure where exactly I should search?

 And the second problem: only one email will be sent until the forum has been visited. Can I set it so that e-mails are always sent? No matter if the user has visited the forum in the meantime or not.

Thanks for Help  Rolleyes
The hook you want is datahandler_post_update_end. You'll pass a variable to the function and use that. You'll also globalize $existing_post. You will then compare $existing_post['message'] and $variable_name['message'].

Look into the my_mail function.
thanks