According to the GDPR, companies that record personal data from EU citizens must delete said data if its owner requests its deletion. An alternative is to anonymize the data, according to this article.
According to this article, Personally identifiable information (PII) is:
Out of the box, Dotkernel Frontend saves the user's name (firstname and lastname) and email (identity). This personal data is used for emails related to password reset and account activation.
The anonymization process makes these replacements:
anonymous
concatenated with the current UNIX timestamp, e.g. anonymous1725980747
.anonymous
concatenated with the current UNIX timestamp and the value in userAnonymizeAppend
, e.g. anonymous1725980747@example.com
.The userAnonymizeAppend
key can be set in config/autoload/local.php
or left empty.
Using an email domain for
userAnonymizeAppend
would work as a catch-all email, if your email service provider has this option enabled.