Hi
I have run same test and today get the following result, the customer gets an email as follows:
WordPress <[email protected]>
Your personal data on YourCompany
Someone has requested access to your data on [YourCompany]
If this was a mistake, just ignore this email and nothing will happen.
To manage your data, visit the following address:
https:// this is the link back to your site to view data.
This link is valid for 15 minutes.
=================================================================
Note: This is an improvement, but the plugin produces and email address that is preconfigure to present “WordPress <[email protected]>”
The best way to do this is to present your the WP Site Admin Email Address or give you a choice to enter a custom email address such as [email protected]
—————————————————————
I have tested a different plugin and they present customer with an email as follows:
YourCompany [email protected]
YourCompany – Your data request
You have requested to access your data on [YourCompany].
Please visit this page to view the data linked to the email address [email protected]
This page is available for 24 hours and can only be reached from the same IP address you requested from.
If your link is invalid please fill in a new request: GDPR – Request personal data.
———————————————————————————–
You can change the sender address pretty easy by inserting this in your themes functions.php
add_filter('gdpr/mail/headers', function($headers) {
$headers[] = 'From: Firstname Lastname <[email protected]>';
return $headers;
});
Hi there!
Feature request taken into account. This makes sense and we’ll try to add it to a future release. Thanks!