XF 2.1 Is it possible to send a conversation to every member of a group?

Lee

Well-known member
I am looking for the facility to potentially change my contact us link with the facility to send a conversation to every member of a selected group.

Is this something that is possible out of the box, or would this require custom development?
 
Solution
You can't do it by group, but you can pass multiple recipients into the start conversation URL:
Code:
https://xenforo.com/community/conversations/add?to=Lee,Chris+D,Mike,Kier
Just add a comma separated list of usernames to the to parameter of the URL. You may need to encode certain characters (e.g. spaces are encoded with a +).
You can't do it by group, but you can pass multiple recipients into the start conversation URL:
Code:
https://xenforo.com/community/conversations/add?to=Lee,Chris+D,Mike,Kier
Just add a comma separated list of usernames to the to parameter of the URL. You may need to encode certain characters (e.g. spaces are encoded with a +).
 
Solution
Top Bottom