{"id":16233516,"url":"https://github.com/takeit/plugin-sendfeedback","last_synced_at":"2026-03-05T09:33:14.730Z","repository":{"id":12097998,"uuid":"14686587","full_name":"takeit/plugin-SendFeedback","owner":"takeit","description":"Allows users (registered/non users) to send feedback messages with attachments. Submitted attachments are automatically added to Media Archive with status \"unapproved\". Feedback message is also added to the Newscoop Admin Panel in Content -\u003e Feedback","archived":false,"fork":false,"pushed_at":"2023-04-19T19:38:04.000Z","size":130,"stargazers_count":0,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-22T11:52:49.771Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/takeit.png","metadata":{"files":{"readme":"README.md","changelog":"NewscoopSendFeedbackBundle.php","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-11-25T13:43:59.000Z","updated_at":"2017-01-23T11:22:07.000Z","dependencies_parsed_at":"2024-11-04T07:15:34.893Z","dependency_job_id":null,"html_url":"https://github.com/takeit/plugin-SendFeedback","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/takeit/plugin-SendFeedback","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeit%2Fplugin-SendFeedback","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeit%2Fplugin-SendFeedback/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeit%2Fplugin-SendFeedback/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeit%2Fplugin-SendFeedback/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takeit","download_url":"https://codeload.github.com/takeit/plugin-SendFeedback/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeit%2Fplugin-SendFeedback/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30117719,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T13:12:56.639Z","updated_at":"2026-03-05T09:33:14.689Z","avatar_url":"https://github.com/takeit.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Send feedback - Contact Plugin\n\nPlugin for basic contact form functionalities. Supports most common fields, supports\nstoring in database and uploading attachments.\n\nThis plugin is compatible with Newscoop 4.3 and higher.\n\nFeatures\n--------\n\n- Send feedback messages (supported fields: first name, last name, email, subject and message)\n- Supports posting via AJAX and normal post with custom redirect page\n- Attachments handling (only images and pdf documents), attach to mail or upload into Newscoop Media Library\n- Let site visitors decide who to send email to (with spam protection)\n- Store feedback in database and view in Newscoop backend (see detailed instructions)\n\nInstallation\n-------------\nInstallation is a quick process:\n\n\n1. How to install this plugin?\n2. That's all!\n\n### Step 1: How to install this plugin?\nRun the command:\n``` bash\n$ php application/console plugins:install \"newscoop/send-feedback-plugin\"\n$ php application/console assets:install public/\n```\nPlugin will be installed to your project's `newscoop/plugins/Newscoop` directory.\n\n### Step 2: That's all!\nGo to Newscoop Admin panel and then open `Plugins` tab. The Plugin will show up there. You can now use the plugin.\n\n\n**Note:**\n\nTo update this plugin run the command:\n``` bash\n$ php application/console plugins:update \"newscoop/send-feedback-plugin\"\n$ php application/console assets:install public/\n```\n\nTo remove this plugin run the command:\n``` bash\n$ php application/console plugins:remove \"newscoop/send-feedback-plugin\"\n```\n\nDocumentation\n-------------\n\n### Extended plugin documentation\n\nFor more information please see our [wiki page](https://wiki.sourcefabric.org/display/NPS/Send+Feedback+-+Contact+plugin).\n\n### Read plugin settings\n\nWith the help of the tag {{ get_feedback_settings }} it's possible to read the plugin settings in the frontend. All current keys which can be read are listed below as well.\n\n```\n{{ get_feedback_settings }}\n{{ get_feedback_settings assign=\"mySettingVariable\" }}\n{{ $mySettingVariable.to }} // Email addresses of valid receivers\n{{ $mySettingVariable.storeInDatabase }} // Whether the feedback will be stored in the database\n{{ $mySettingVariable.allowAttachments }} // Whether attachments are allowed\n{{ $mySettingVariable.allowAnonymous }} // Whether non-registered users can send feedback\n```\n\n### Basic example\n\n``` html\n\u003cform id=\"sendFeedbackForm\" method=\"post\" action=\"/plugin/send-feedback\" enctype=\"multipart/form-data\"\u003e\n    \u003cdiv class=\"form-group\"\u003e\n        \u003clabel for=\"sendFeedbackForm_first_name\"\u003eFirst Name\u003c/label\u003e\n        \u003cinput type=\"text\" id=\"sendFeedbackForm_first_name\" name=\"sendFeedbackForm[first_name]\" required=\"required\" class=\"form-control\" placeholder=\"First name\"\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"form-group\"\u003e\n        \u003clabel for=\"sendFeedbackForm_last_name\"\u003eLast Name\u003c/label\u003e\n        \u003cinput type=\"text\" id=\"sendFeedbackForm_last_name\" name=\"sendFeedbackForm[last_name]\" required=\"required\" class=\"form-control\" placeholder=\"Last name\"\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"form-group\"\u003e\n        \u003clabel for=\"sendFeedbackForm_email\"\u003eEmail\u003c/label\u003e\n        \u003cinput type=\"text\" id=\"sendFeedbackForm_email\" name=\"sendFeedbackForm[email]\" required=\"required\" class=\"form-control\" placeholder=\"Email\"\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"form-group\"\u003e\n        \u003clabel for=\"sendFeedbackForm_subject\"\u003eSubject\u003c/label\u003e\n        \u003cinput type=\"text\" id=\"sendFeedbackForm_subject\" name=\"sendFeedbackForm[subject]\" required=\"required\" class=\"form-control\" placeholder=\"Subject\"\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"form-group\"\u003e\n        \u003clabel for=\"sendFeedbackForm_message\"\u003eMessage\u003c/label\u003e\n        \u003ctextarea id=\"sendFeedbackForm_message\" name=\"sendFeedbackForm[message]\" required=\"required\" class=\"form-control\" placeholder=\"Message\"\u003e\u003c/textarea\u003e\n    \u003c/div\u003e\n\n    \u003cinput id=\"submitSendFeedbackForm\" class=\"btn btn-primary\" type=\"submit\" value=\"Submit\"\u003e\n\u003c/form\u003e\n```\n\nLicense\n-------\n\nThis bundle is under the GNU General Public License v3. See the complete license in the bundle:\n\n    LICENSE\n\nAbout\n-------\nThis Bundle is a [Sourcefabric z.ú.](https://github.com/sourcefabric) initiative.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeit%2Fplugin-sendfeedback","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakeit%2Fplugin-sendfeedback","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeit%2Fplugin-sendfeedback/lists"}