User Tools

Site Tools


modulesettingsguide

Table of Contents

Steps to Fill in the ModuleSettings Table (Complete Guide)

This guide provides a step-by-step approach to correctly fill the ModuleSettings table. This table is used to configure settings for different survey modules in the system. It defines how the module behaves, processes invitations, handles responses, and performs various actions. The table is linked to the fw_modules table via the moduleid column, meaning the settings apply specifically to a module. You can find the detailed structure of the ModuleSettings table here:\\
👉 Module Settings Table Structure

1. Add the ID (id)

The id is an auto-increment primary key for each record in the ModuleSettings table.
How to fill this:

  • This field is automatically generated by the database.
  • Do not enter any value manually.

Example:

id
1
2
3

The moduleid field connects this setting to a specific module in the fw_modules table.
How to fill this:

  • Enter the moduleid from the fw_modules table.
  • This ensures that the settings apply to the correct survey module.

Example:

moduleid
1
2

💡 Note: Always ensure the moduleid exists in the fw_modules table.

3. Define Module Type (moduletype)

This field determines the survey flow type — whether Continuous or Wave.
Options:

  • continuous → For surveys that continuously run without interruption.
  • wave → For surveys that are conducted in phases (waves).

Use wave if you plan to collect feedback in periodic cycles.
Use continuous for ongoing feedback collection.

4. Survey Display Type (surveydisplaytype)

This field defines whether the survey should be displayed on one page or one question per page.
How to fill this:

  • Choose single_page if you want the entire survey to appear on one page.
  • Choose default to display one question per page.

5. Send Before Days (sendbeforedays)

This field determines when the survey invitation will be automatically discarded if the consultation date has passed.
How to fill this:

  • Enter the number of days after which the invitation should expire.

Example:

sendbeforedays
30
60
90

💡 Scenario:

  • If sendbeforedays = 30 and the consultation date was 1st March, the invitation will expire on 1st April.

6. Email Type (emailtype)

Defines the design of the email that will be sent to the respondent.
Options:

  • logo_on_top → The logo appears at the top of the email.
  • logo_on_left → The logo appears on the left side.

7. Progress Bar Type (progressbartype)

Defines the type of progress bar shown during the survey.
Options:

  • percentage → Shows percentage progress.
  • number → Shows “Question 1 of 10.”
  • line → Shows a visual line indicator.

8. Blacklist Type (blacklisttype)

Defines what should be checked for blacklisting (email, import variable, or both).
Options:

  • email → Blacklists based on email.
  • import variable → Blacklists based on imported variable.
  • both → Checks both email and variable.

9. Language (languages)

Defines whether the survey should be single-language or multi-language.
Options:

  • single → Only one language.
  • multi → Allows respondents to choose a language.

10. Language Selection (languageselection)

Defines where the respondent can select the survey language.
Options:

  • invitation_screen → Language selection happens when the invitation is opened.
  • survey_page → Language selection happens inside the survey.

11. Hide Client Logo in Survey (hideclientlogoinsurvey)

Defines whether the client's logo should appear in the survey.
Options:

  • 1 → Hide the logo.
  • 0 → Show the logo.

12. Period Bar in Graphs (periodbaringraphs)

Defines if the period bar should be shown in survey reports.
Options:

  • 1 → Show period bar.
  • 0 → Hide period bar.

13. Action List (actionlist)

Defines if an action list should be created for this module.
Options:

  • 1 → Enable action list.
  • 0 → Disable action list.

14. Multiple Action Items (multipleactionitems)

Defines if multiple action items can be created for the same invitation.
Options:

  • 1 → Allow multiple action items.
  • 0 → Disable multiple action items.

15. Case Assigned SMS (caseassignedsms)

Defines whether an SMS should be sent when a case is assigned.
Options:

  • 1 → Send SMS.
  • 0 → Do not send SMS.

16. Email Settings (emailsettings)

Defines whether the email content is fixed or variable-based.
Options:

  • default → Fixed email content.
  • variable_based → Email content changes based on variables.

17. Variable Field Name (variablefieldname)

Defines the variable field in fw_invitationfields table that is linked to the survey.
How to fill this:

  • Enter the exact column name from fw_invitationfields.

Example:

variablefieldname
department
product_name

18. Add the Variable Field Params (variablefieldparams)

The variablefieldparams field is used to store the query parts that capture specific variable data from the invitation. These query parts are typically used to extract information like doctor name, appointment date, or consultation type.
How to fill this:

  • Use query conditions in JSON format or SQL-like conditions.
  • This field supports dynamic variable mapping for invitation fields.

Example: If you want to capture the doctor’s name from the invitation: `{“field”: “doctor_name”, “operator”: “=”, “value”: “Dr. Smith”}`

If you want to capture all invitations where the appointment date is within the last 30 days: `{“field”: “appointment_date”, “operator”: “>”, “value”: “current_date - 30”}`

19. Add the Blacklist Field (blacklistfield)

The blacklistfield defines which column from the invitation table should be used to blacklist the invitation. This is useful when you want to prevent sending surveys to respondents based on certain criteria.
How to fill this:

  • Use the column name from the invitation table that holds the email address, phone number, or any unique identifier you want to blacklist.

Example: If you want to blacklist based on email: `email`

If you want to blacklist based on a custom variable like PatientID: `patient_id`

20. Add the Reset Half Year Field (resethalfyearfield)

The resethalfyearfield defines the condition to reset the survey eligibility based on a half-yearly rule. This means if the same respondent was invited within the last 6 months, the system will decide whether to invite them again or not.
How to fill this:

  • Use the column name that contains the date of the previous consultation or survey invitation.

Example: If the column for the consultation date is: `consultation_date`

If the column for the invitation date is: `invitation_date`

💡 This field works along with the next two fields for resetting survey eligibility.

21. Add the Reset Half Year Check Module IDs (resethalfyearcheckmoduleids)

The resethalfyearcheckmoduleids column stores a comma-separated list of module IDs that will also be checked when applying the reset half-year rule. This is particularly useful when a respondent has received invitations from multiple modules but you still want to apply the same reset condition across them.
How to fill this:

  • Enter the module IDs separated by commas (,).
  • Ensure these module IDs match the id column from the fw_modules table.

22. Add the Ignore Reset Half Year (ignoreresethalfyear)

The ignoreresethalfyear defines whether the system should still insert the invitation even if the reset half-year condition is met.
Options:

  • 1 → Insert the invitation but do not send the email.
  • 0 → Prevent invitation insertion if the reset condition is met.

How to fill this:

  • Enter 1 to ignore the reset condition and allow inserting the invitation.
  • Enter 0 to strictly follow the reset condition.

23. Consider Participated Invitations for Reset Half Year (considerparticipatedinvitationsforresethalfyear)

The considerparticipatedinvitationsforresethalfyear defines whether the system should consider participated surveys (respondents who have already completed the survey) as a part of the reset half-year condition.
Options:

  • 1 → Prevent new invitations if the respondent already participated within 6 months.
  • 0 → Only check invitation date regardless of participation.

24. Add the Response Overview Field Type (responseoverviewfieldtype)

The responseoverviewfieldtype defines the source from which the response overview data should be fetched.
It can either be:

  • invitations → Fetch data from fw_invitationfields table.
  • orgstructure → Fetch data from fw_orgstructuremaster table.

This field helps in splitting the response overview data based on specific columns.
How to Fill This Field

  • If you want to split data by invitation variables, enter: invitations
  • If you want to split data by organization structure, enter: orgstructure

25. Add the Response Overview Field (responseoverviewfield)

The responseoverviewfield stores the ID of the field (from either fw_invitationfields or fw_orgstructuremaster) that will be used to split the data in the response overview report.
How to Fill This Field:

  • Go to the fw_invitationfields table and find the field ID of the column you want to split data by.
  • Enter that ID here.

Example:
If you want to split data based on department, and its field ID is 12, enter 12

26. Add the Response Page Type (responsepagetype)

The responsepagetype determines which type of response overview page should be displayed in the report.

  • Performitor type → Provides detailed response breakdown.
  • Reportal type → Provides a summarized response with minimal details.

27. Add the Redirect Delay (redirectdelay)

The redirectdelay sets the delay (in seconds) before redirecting the respondent to the end page URL after completing the survey.
How to Fill This Field:

  • Enter the delay time in seconds.
  • If you want to redirect immediately, enter 0.

Example

ValueResult
5Redirect after 5 seconds.
0Redirect immediately.

28. Add the End Page URL (endpageurl)

The endpageurl defines the URL to which the respondent will be redirected after completing the survey. \\How to Fill This Field:

  • Enter the full URL with http or https.
  • Ensure the URL is live and accessible.

Example https://www.perfformitor.com/thank-you

29. Add the Import Invitation Limit (importinvlimit)

The importinvlimit defines the maximum number of invitations that can be imported from an Excel sheet at one time. Example Value Max Importable Invitations 500 Can import 500 invitations per upload.

30. Add the No Invitation Fields (noinvfields)

The noinvfields determines if fields are mandatory for setting up invitations.

1→Fields are mandatory.
0→No fields required.

31. Add the Invitation Upload Fields (invuploadfields)

The invuploadfields field is used to define which fields are allowed when uploading invitations through Excel or CSV files. These fields usually correspond to the columns present in the fw_invitationfields table or any custom fields required for survey invitations.
How to Fill This Field:

  • List the allowed fields (column names from fw_invitationfields) separated by a comma (,).
  • If you want all fields to be uploaded, enter ALL.

Example:

  • Suppose your invitation file contains fields like Email, Patient ID, and Consultation Date : email, patient_id, consultation_date
  • If you want to allow all fields:ALL

32. Add the Survey Feedback Score Field ID (surveyfeedbackscorefieldid)

The surveyfeedbackscorefieldid field defines the ID of the field that contains the feedback score from the respondent (e.g., NPS Score, Satisfaction Score).

How to Fill This Field:

  • Go to the fw_invitationfields table and find the Field ID for the feedback score field.
  • Enter that Field ID here.

Example Suppose the feedback score column has an ID of 23: 23

33. Add the Score Higher Than Value (scorehigherthanvalue)

The scorehigherthanvalue field allows you to filter responses where the feedback score is higher than a specific value. This is typically used in Net Promoter Score (NPS) or similar metrics.

How to Fill This Field

  • Enter the minimum score that should be considered for filtering.
  • This value works only when the surveyfeedbackscorefieldid is set.

Example If you only want to show feedback where the score is above 8: 8

💡 This is commonly used in Promoter/Detractor score calculation.

34. Add the Score Lower Than Value (scorelowerthanvalue)

The scorelowerthanvalue field allows you to filter responses where the feedback score is lower than a specific value. This is typically used to identify detractors in NPS scoring. ✅ How to Fill This Field

•	Enter the maximum score that should be considered for filtering.
•	This value works only when the surveyfeedbackscorefieldid is set.

✅ Example If you only want to capture detractors where the score is below 6: 6 💡 This field works in combination with scorehigherthanvalue.

35. Add the Redirect URL for Higher Scores (redirecturlhigherscore)

The redirecturlhigherscore defines the URL where respondents will be redirected if they give a high feedback score (based on scorehigherthanvalue). This is often used to redirect satisfied customers to a Google Review Page, Thank You Page, etc.. ✅ How to Fill This Field

•	Enter the full URL with http or https.
•	This URL will be triggered only if the feedback score exceeds the higher score limit.

✅ Example If your higher score threshold is 8, you can redirect them to: https://www.yourwebsite.com/thank-you

36. Add the Redirect URL for Lower Scores (redirecturllowerscore)

The redirecturllowerscore defines the URL where respondents will be redirected if they give a low feedback score (based on scorelowerthanvalue). This is often used to collect negative feedback or route dissatisfied customers to support pages. ✅ How to Fill This Field

•	Enter the full URL with http or https.
•	This URL will be triggered only if the feedback score falls below the lower score limit.

✅ Example If your lower score threshold is 6, you can redirect them to: https://www.yourwebsite.com/contact-support

37. Add the Minimum Feedback Score (minfeedbackscore)

The minfeedbackscore field allows you to set the minimum score range for feedback responses. Any response below this minimum score will be excluded from the feedback report. ✅ How to Fill This Field

•	Enter the minimum score you wish to capture in reports.
•	Any feedback score below this value will be excluded from reports.

✅ Example If you want to capture feedback scores above 4 only: 4

38. Add the Maximum Feedback Score (maxfeedbackscore)

The maxfeedbackscore field allows you to set the maximum score range for feedback responses. Any response above this maximum score will be excluded from the feedback report. ✅ How to Fill This Field

•	Enter the maximum score you wish to capture in reports.
•	Any feedback score above this value will be excluded from reports.

✅ Example If you want to capture feedback scores up to 10 only: 10

39. Add the Ignore Feedback Score for Invitations (ignorefeedbackscoreforinvitations)

The ignorefeedbackscoreforinvitations determines whether the feedback score should affect the invitation logic.

•	If set to 1 → Ignore the feedback score when considering new invitations.
•	If set to 0 → Respect the feedback score when considering new invitations.

✅ How to Fill This Field Value Result 1 Do not use feedback scores for invitation logic. 0 Use feedback scores for invitation logic. ✅ Example If you want to ignore scores and continue sending surveys, enter: 1 If you want to stop sending surveys if a high score was received: 0

40. Add the Send Feedback Request (sendfeedbackrequest)

The sendfeedbackrequest field determines whether a separate feedback request email should be sent after the survey is completed.

•	This is mostly used in follow-up emails.
•	If enabled, it sends a second email requesting feedback on the survey experience.

✅ How to Fill This Field Value Result 1 Send feedback request email. 0 Do not send feedback request email. ✅ Example If you want to send a follow-up email asking for feedback: 1 If you do not want to send any follow-up email: 0

I'll proceed with Rows 41 to 50 now. One moment! 👍

41. Add the Maximum Feedback Request Attempts (maxfeedbackrequestattempts)

The maxfeedbackrequestattempts field defines the maximum number of times a feedback request email will be sent to the respondent if they do not respond. This prevents spamming respondents with too many requests. ✅ How to Fill This Field

•	Enter the maximum number of attempts to send a feedback request.
•	Once the maximum attempts are reached, no further feedback requests will be sent.

✅ Example If you want to send a maximum of 2 feedback request emails: 2 If you do not want to limit attempts: 0 💡 Best Practice: Keep the value below 3 to avoid annoying respondents.

42. Add the Feedback Request Interval (feedbackrequestinterval)

The feedbackrequestinterval field defines the waiting period (in days) between two consecutive feedback request emails if the respondent hasn't replied. ✅ How to Fill This Field

•	Enter the number of days between two feedback request attempts.
•	If set to 0, the system will not wait and send requests immediately.

✅ Example If you want to wait 7 days before sending another request: 7 If you do not want any delay: 0 💡 Best Practice: Keep a gap of at least 3-7 days to avoid frustration.

43. Add the Feedback Email Template ID (feedbackemailtemplateid)

The feedbackemailtemplateid field defines the ID of the email template used for sending the feedback request. This template is usually predefined in the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the feedback email.
•	Enter the template ID here.

✅ Example Suppose the feedback email template has an ID of 12: 12 💡 If you do not specify any template, no feedback request email will be sent.

44. Add the Allow Resending of Feedback Request (allowresendfeedbackrequest)

The allowresendfeedbackrequest field determines whether the system should allow manual resending of feedback requests by an admin (even after attempts are exhausted). ✅ How to Fill This Field Value Result 1 Allow manual resending of feedback requests. 0 Do not allow manual resending. ✅ Example If you want to give admins the option to resend feedback requests: 1 If you want to strictly follow the max attempt rule: 0 💡 Use with caution to avoid spamming customers.

45. Add the Minimum Days Between Feedback Requests (mindaysbetweenfeedbackrequests)

The mindaysbetweenfeedbackrequests field specifies the minimum number of days between two separate feedback requests (even if the feedback score is different). ✅ How to Fill This Field

•	Enter the number of days that must pass before sending another feedback request.
•	This prevents excessive follow-ups.

✅ Example If you want at least 30 days between two requests: 30 If you do not want any restriction: 0 💡 Best Practice: Use 30-60 days to avoid disturbing customers.

46. Add the Feedback Request Expiry Days (feedbackrequestexpirydays)

The feedbackrequestexpirydays field defines the number of days after which the feedback request expires. If the respondent does not reply within this time, the system will close the request automatically. ✅ How to Fill This Field

•	Enter the number of days before the feedback request expires.
•	Once expired, the respondent cannot submit feedback.

✅ Example If you want feedback requests to expire after 14 days: 14 If you do not want feedback requests to expire: 0 💡 This ensures that feedback requests do not remain open indefinitely.

47. Add the Close Feedback Request on Submission (closefeedbackrequestonsubmission)

The closefeedbackrequestonsubmission field determines whether the feedback request should automatically close once the respondent submits their feedback. ✅ How to Fill This Field Value Result 1 Automatically close the feedback request after submission. 0 Keep the feedback request open even after submission. ✅ Example If you want to close the request immediately after submission: 1 If you want to keep it open for future feedback: 0 💡 This is generally recommended to avoid confusion.

48. Add the Maximum Invitation Attempts (maxinvitationattempts)

The maxinvitationattempts field sets the maximum number of times an invitation email can be sent to a participant if they do not respond. ✅ How to Fill This Field

•	Enter the maximum number of email attempts per participant.
•	Once the maximum attempts are reached, no further invitations will be sent.

✅ Example If you want to send a maximum of 3 invitations: 3 If you do not want any limit: 0 💡 Best Practice: Keep the value between 2-3.

49. Add the Invitation Attempt Interval (invitationattemptinterval)

The invitationattemptinterval defines the waiting period (in days) between two consecutive invitation emails if the respondent hasn't replied. ✅ How to Fill This Field

•	Enter the number of days between two invitation attempts.
•	If set to 0, no delay will occur.

✅ Example If you want to wait 5 days between attempts: 5 If you do not want any delay: 0 💡 Best Practice: Keep it between 3-5 days.

50. Add the Invitation Email Template ID (invitationemailtemplateid)

The invitationemailtemplateid field specifies the email template to use when sending invitations to participants. This template can be selected from the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the invitation email.
•	Enter that template ID here.

✅ Example If your invitation email template has an ID of 15: 15 If you do not want to use any template: 0 💡 This template is sent to participants when they are invited to complete a survey.

I'll proceed with Rows 51 to 60 now. One moment! 👍

51. Add the Allow Resending of Invitations (allowresendinvitation)

The allowresendinvitation field defines whether the admin has the authority to manually resend an invitation email to participants, even after the maximum attempts have been reached. ✅ How to Fill This Field Value Result 1 Allow admins to manually resend invitation emails. 0 Do not allow manual resending once the maximum attempts are reached. ✅ Example If you want to allow admins to manually resend invitations: 1 If you do not want any manual intervention: 0 💡 Best Practice: Allow manual resending only if critical.

52. Add the Minimum Days Between Invitations (mindaysbetweeninvitations)

The mindaysbetweeninvitations field defines the minimum number of days that must pass before sending another invitation to the same participant. This prevents participants from being spammed with frequent invitations. ✅ How to Fill This Field

•	Enter the number of days to wait before sending another invitation.
•	If set to 0, there is no delay between attempts.

✅ Example If you want a minimum gap of 5 days between two invitations: 5 If you want no waiting period: 0 💡 Best Practice: Set at least 3-5 days to avoid irritation.

53. Add the Invitation Expiry Days (invitationexpirydays)

The invitationexpirydays field defines how long (in days) an invitation remains valid before it automatically expires. Once expired, the participant will no longer be able to respond. ✅ How to Fill This Field

•	Enter the number of days before the invitation expires.
•	If set to 0, the invitation will never expire.

✅ Example If you want invitations to expire after 14 days: 14 If you want them to remain valid indefinitely: 0 💡 Best Practice: Keep this around 14-30 days for practical follow-ups.

54. Add the Close Invitation on Submission (closeinvitationonsubmission)

The closeinvitationonsubmission field determines whether the invitation should be automatically closed once the participant has submitted their response. ✅ How to Fill This Field Value Result 1 Automatically close the invitation after submission. 0 Keep the invitation open even after submission. ✅ Example If you want to close the invitation after a response is submitted: 1 If you want it to remain open for future responses: 0 💡 Best Practice: Always set this to 1 to avoid redundant open invitations.

55. Add the Reminder Email Template ID (reminderemailtemplateid)

The reminderemailtemplateid field stores the ID of the email template used for sending reminder emails to participants who have not yet responded to the invitation. This template is usually found in the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the reminder email.
•	Enter the template ID here.

✅ Example If the reminder email template has an ID of 22: 22 If no template is required: 0 💡 Best Practice: Always use a polite and persuasive reminder template.

56. Add the Maximum Reminder Attempts (maxreminderattempts)

The maxreminderattempts field specifies the maximum number of times a reminder email will be sent to participants if they have not responded to the invitation. ✅ How to Fill This Field

•	Enter the maximum number of reminders that can be sent.
•	Once the maximum attempts are exhausted, no further reminders will be sent.

✅ Example If you want to send a maximum of 3 reminders: 3 If you do not want any reminders: 0 💡 Best Practice: Limit reminders to 2-3 to avoid overwhelming participants.

57. Add the Reminder Interval Days (reminderintervaldays)

The reminderintervaldays field specifies the number of days between two consecutive reminder emails (if the participant has not responded). This helps space out reminders to avoid spamming. ✅ How to Fill This Field

•	Enter the number of days between two reminders.
•	If set to 0, reminders will be sent immediately after each failed attempt.

✅ Example If you want to wait 5 days between reminders: 5 If you want no delay between reminders: 0 💡 Best Practice: Set this between 3-5 days for effective follow-ups.

58. Add the Reminder Expiry Days (reminderexpirydays)

The reminderexpirydays field defines the maximum number of days the system will keep sending reminders. Once the expiration period is reached, no further reminders will be sent. ✅ How to Fill This Field

•	Enter the number of days after which reminders should stop.
•	If set to 0, reminders will never expire.

✅ Example If you want reminders to expire after 30 days: 30 If you do not want reminders to expire: 0 💡 Best Practice: Set a clear expiry to avoid continuous reminders.

59. Add the Close Reminder on Submission (closereminderonsubmission)

The closereminderonsubmission field defines whether the system should automatically stop reminders once the participant submits their response. ✅ How to Fill This Field Value Result 1 Automatically stop reminders after submission. 0 Continue reminders even after submission. ✅ Example If you want reminders to stop once a response is submitted: 1 If you want reminders to continue regardless of response: 0 💡 Best Practice: Always set this to 1 to avoid redundant reminders.

60. Add the Survey Completion Email Template ID (surveycompletionemailtemplateid)

The surveycompletionemailtemplateid field stores the email template ID for sending a thank-you or confirmation email after the participant has successfully completed the survey. The template is generally stored in the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the survey completion email.
•	Enter the template ID here.

✅ Example If the survey completion email template has an ID of 30: 30 If no thank-you email is needed: 0 💡 Best Practice: Always send a thank-you email to participants.

I'll proceed with Rows 61 to 68 now. One moment! 👍

61. Add the Enable Invitation Expiry Notification (enableinvitationexpirynotification)

The enableinvitationexpirynotification field determines whether the system should send a notification email to participants when their invitation is about to expire. This helps increase response rates by informing participants before their access expires. ✅ How to Fill This Field Value Result 1 Enable invitation expiry notification. 0 Disable invitation expiry notification. ✅ Example If you want participants to receive an email when their invitation is about to expire: 1 If you do not want them to receive any notification: 0 💡 Best Practice: Always enable this notification to maximize response rates.

62. Add the Invitation Expiry Notification Days (invitationexpirynotificationdays)

The invitationexpirynotificationdays field defines how many days before the invitation expires should the notification email be sent to the participant. This works only if enableinvitationexpirynotification is set to 1. ✅ How to Fill This Field

•	Enter the number of days before expiry when the notification should be sent.
•	If set to 0, no notification will be sent.

✅ Example If you want the notification to be sent 3 days before expiry: 3 If you do not want any notification: 0 💡 Best Practice: Set this to 3-5 days for a polite reminder before expiry.

63. Add the Invitation Expiry Notification Email Template ID (invitationexpirynotificationemailtemplateid)

The invitationexpirynotificationemailtemplateid field stores the email template ID for the notification email sent to participants when their invitation is about to expire. The template is stored in the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the expiry notification email.
•	Enter the template ID here.

✅ Example If the expiry notification email template has an ID of 12: 12 If no notification email is needed: 0 💡 Best Practice: Always use a friendly and clear expiry notification template.

64. Add the Allow Manual Close of Invitation (allowmanualcloseinvitation)

The allowmanualcloseinvitation field determines whether the admin has permission to manually close an open invitation before it expires or is submitted. This is useful when the admin wants to stop participation for specific participants. ✅ How to Fill This Field Value Result 1 Allow admin to manually close open invitations. 0 Do not allow manual closing of invitations. ✅ Example If you want the admin to have the option to manually close invitations: 1 If you want invitations to remain open until expiry/submission: 0 💡 Best Practice: Enable manual close only if your survey has time-sensitive responses.

65. Add the Allow Manual Close of Reminder (allowmanualclosereminder)

The allowmanualclosereminder field defines whether the admin has the authority to manually stop sending reminders to a particular participant. This is useful if the participant already responded outside the survey or requested no further communication. ✅ How to Fill This Field Value Result 1 Allow admin to manually stop reminders. 0 Do not allow manual stopping of reminders. ✅ Example If you want the admin to stop reminders for specific participants: 1 If reminders should continue until the maximum attempts or submission: 0 💡 Best Practice: Enable this option for flexible participant management.

66. Add the Survey Close Notification Email Template ID (surveyclosenotificationemailtemplateid)

The surveyclosenotificationemailtemplateid field stores the email template ID used to notify participants when their survey has been manually closed. This only works if allowmanualcloseinvitation is set to 1. The template is stored in the emailtemplates table. ✅ How to Fill This Field

•	Go to the emailtemplates table.
•	Find the template ID for the survey close notification.
•	Enter the template ID here.

✅ Example If the survey close notification template has an ID of 15: 15 If no notification is needed: 0 💡 Best Practice: Always notify participants if their survey has been closed.

67. Add the Allow Manual Reopen of Invitation (allowmanualreopeninvitation)

The allowmanualreopeninvitation field defines whether the admin has permission to manually reopen a closed invitation for participants. This is helpful if participants miss their deadline or request another chance to complete the survey. ✅ How to Fill This Field Value Result 1 Allow admin to manually reopen closed invitations. 0 Do not allow manual reopening of invitations. ✅ Example If you want the admin to reopen closed invitations when needed: 1 If you want closed invitations to remain permanently closed: 0 💡 Best Practice: Enable this option to allow flexibility in participation.

68. Add the Allow Manual Reopen of Reminder (allowmanualreopenreminder)

The allowmanualreopenreminder field defines whether the admin has the authority to resume reminder emails for a participant after it has been stopped (either manually or by system expiry). This allows re-engagement with participants after reminders were paused. ✅ How to Fill This Field Value Result 1 Allow admin to manually resume reminders. 0 Do not allow manual resuming of reminders. ✅ Example If you want the admin to have the option to resume reminders: 1 If you want reminders to stay permanently closed once stopped: 0 💡 Best Practice: Enable this option to ensure missed participants can still engage.

✅ Notes 💡 Always cross-verify email template IDs from the emailtemplates table to avoid sending incorrect emails.
💡 Enable manual controls if you need more flexibility in managing participant invitations and reminders.
💡 Set reasonable expiry days to avoid survey fatigue for participants.

modulesettingsguide.txt · Last modified: 2025/03/11 11:38 by gloria