Home › Forums › Front End PM PRO › Send separate message for each member for group message
- This topic has 4 replies, 2 voices, and was last updated 7 years, 1 month ago by Tattoo.
- AuthorPosts
- October 29, 2018 at 6:10 pm #18637TattooParticipant
I think this is similar to my requirement
When sending email by Group how can I apply the “separate message” option similar to sending email to multiple recipients?I need my participants in the Group to reply only to me (admin) privately. They cannot see each other’s reply or discover who are included in the group.
I am aware that the one-to-one message can be achieve using multiple recipients but I will be constantly sending emails to multiple recipients so I thought of using group since it is reusable and much easier than adding the same recipients one by one again.
Is there a way we can add that separate message option to group message?
October 29, 2018 at 10:50 pm #18642Shamim HasanKeymasterGroup message works in a different way then multiple recipient.
If you want separate message for each members then multiple recipients option is what you want. You can select multiple recipients from Directory and send message to them (Select “Send Message” from Bulk Action dropdown) so that you do not need to type user name one by one. Or you can collect your users ids, Then go to “New Message” and in url paste like&fep_mr_to=1,2,3(where 1,2,3 is user ids separated by comma) then press “Enter”. This will fill up your “To” field with those users so that you do not need to type one by one.October 30, 2018 at 5:44 pm #18675TattooParticipantThis reply has been marked as private.October 31, 2018 at 12:02 am #18683Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_directory_arguments', function( $args ){ if ( ! empty( $_GET['fep-search'] ) && in_array( $_GET['fep-search'], [ 'Individual', 'Corporate' ] ) ) { $args['meta_query'][] = [ 'key' => 'group_type', 'value' => $_GET['fep-search'], ]; unset( $args['search'] ); } return $args; });(untested).
if you search users with Individual or Corporate (case sensitive) then they will be searched with that meta.
October 31, 2018 at 1:05 pm #18698TattooParticipantThis reply has been marked as private. - AuthorPosts
You need to purchase ‘Front End PM PRO’ to create topic in this support forum.
If you already purchased ‘Front End PM PRO’ please LOGIN.