Send separate message for each member for group message


Home Forums Front End PM PRO Send separate message for each member for group message

This topic is: Resolved
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #18637
    Tattoo
    Participant

    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?

    #18642
    Shamim Hasan
    Keymaster

    Group 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.

    #18675
    Tattoo
    Participant
    This reply has been marked as private.
    #18683
    Shamim Hasan
    Keymaster

    Add 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.

    #18698
    Tattoo
    Participant
    This reply has been marked as private.
Viewing 5 posts - 1 through 5 (of 5 total)

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.