Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
373 views
in Q2A Core by
reshown by
how to allow visitors to send private message?
Q2A version: 1.8.1

1 Answer

+1 vote
by
It’s not possible inside Q2A, because messages (private and public wall posts) are always tied to a userid in the database.

It would be possible to do something similar yourself with a page plugin. The page would accept a parameter of the username/id (e.g. example.com/send-pm?user=1234) then the page would have a form like the feedback page. That would at least send the PM, but you’d need to create a separate database table if you wanted to store messages. And to be honest that kind of system is ripe for spam.
...