Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
454 views
in Q2A Core by
When you edit a user profile as admin, there is the checkbox missing: "Mass mailings: Subscribe to emails sent out to all users"

I often have returning emails from email servers that stated, user does not exist, or alike. Then I need to unsubscribe them. Since the email body with unsubscribe link is often not send back, I have to dig into the databse to find the user, then change the flag bitwise... just a hassle.

Thanks for consideration.
Kai

 

PS:
define('QA_USER_FLAGS_NO_MAILINGS', 32);
qa_db_user_set_flag($loginuserid, QA_USER_FLAGS_NO_MAILINGS, true);
Q2A version: 1.6.4

Please log in or register to answer this question.

...