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="user@example.com">
Feedback
</button>
- JavaScript
- React
<drop-feedback report-identifier="user@example.com" />
import { DropFeedback } from "@dropfeedback/react";
<DropFeedback reportIdentifier="user@example.com" />;
info
If you don't provide the attribute, the feedback will be shown as anonymous.