Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
428 views
in Q2A Core by
In each user profile there is a check box that allows the user to say whether he/she want or not to receive emails.

Where is this information is kept in the database? What table? What column?

2 Answers

+1 vote
by
selected by
 
Best answer

Sama55 is right. There are 2 flags:

  • QA_USER_FLAGS_NO_MESSAGES: Controls whether the user doesn't want to receive private messages from other users
  • QA_USER_FLAGS_NO_MAILINGS: Controls whether the user doesn't want to receive messages sent from the admin/mailing section
Bear in mind that they should be queries this way:
$useraccount['flags'] & QA_USER_FLAGS_NO_MESSAGES
 
Also note, for some reason, the meaning is negative itself "no messages", so you have to always negate the whole condition and not the constant in its own as shown in the link.
+2 votes
by
Probably, it is flags field in qa_users table. In detail, refer to "define('QA_USER_FLAGS_*" in qa-app-users.php.
...