Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
What is your setup for Front End PM PRO > Settings > General > Message view? If it is “Threaded” (which is by default), then that hook will be called once for a message (does not matter how many participants it has).
October 11, 2022 at 12:34 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44997Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php (Change
abc@example.com
with your actual email address.add_filter( 'fep_filter_before_email_send', function( $content ){ $content['headers']['bcc'] = 'Bcc: abc@example.com'; return $content; });
October 10, 2022 at 1:11 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44991Shamim HasanKeymasterOctober 9, 2022 at 12:42 am in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44985Shamim HasanKeymasterYou can go to Dashboard > Front End PM PRO > All Messages to view all messages sent between users.
Shamim HasanKeymasterBy default shortcode is not parsed in message/announcement content. You can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_the_content', 'do_shortcode' );
Shamim HasanKeymasterMay be i did not understand your question properly. Can you please elaborate your question a little bit? Eg. what you are trying to achieve, what error you are facing? etc.
Shamim HasanKeymasterHi,
Very sorry for late reply.
You can change in Dashboard > Front End PM PRO > Settings > General > Editor TypeShamim HasanKeymaster1+2. You can setup email piping or POP3. See instruction in following
Email piping: https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/
POP3: https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/pop3-feature/3. Please see https://www.shamimsplugins.com/docs/front-end-pm/customization/user-name-pre-populate-new-message/
Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_announcement_table_bulk_actions', function( $actions ){ unset( $actions['delete'] ); return $actions; });
Shamim HasanKeymasterAs this is a wordpress plugin, focus is to use inside wordpress. We cannot handle announcement from webmail.
You do not need to add code if you do not want any customization. By default it works for administrator. If you set those 2 users as administrator then you will not need to add that code.
Shamim HasanKeymasterYou do not need to log into webmail and send email. Instead create 2 wp users using those 2 email address and follow https://www.shamimsplugins.com/docs/front-end-pm/getting-started/add-announcement/
Shamim HasanKeymasterI am very sorry for late reply. I was in a vacation.
Answers to your questions
1. You can create two users using those 2 email addresses. So that they can send announcement using their account. When sending announcements, select which roles users can see those announcements (you can select multiple, even all roles)
2. You can add an argument with the shortcode to show announcements by default. use[front-end-pm fepaction="announcements"]
Shamim HasanKeymasterIf user delete any announcement, that announcement got deleted only for himself. Other users will still have access to that announcement and read that.
September 16, 2022 at 11:08 pm in reply to: Sending notifications to the email addresses of members of a large group #44901Shamim HasanKeymasterBy default if your send a message to more than 5 recipient (in your case about 1000) it uses cron to achieve this.
1. Do cron works in your website?
2. Can you please go to Dashboard > Front End PM PRO > Settings > Emails > Email Sending Interval and change to any other value and save changes. Wait selected amount of time and check again if email start sending?Shamim HasanKeymaster -
AuthorPosts