User Identification
To identify the user who sent the feedback, you can use the report-identifier
attribute on your trigger element or <drop-feedback />
component.
It can be an email address, a username, or any other identifier that you use to identify your users. If you provide an email address, the reply button will be displayed in your feedback inbox.
<button data-feedback-button data-report-identifier="[email protected]">
Feedback
</button>
- JavaScript
- React
<drop-feedback report-identifier="[email protected]" />
import { DropFeedback } from "@dropfeedback/react";
<DropFeedback reportIdentifier="[email protected]" />;
info
If you don't provide the attribute, the feedback will be shown as anonymous.