Skip to content

Commit

Permalink
Create service support email variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bizz committed Dec 13, 2024
1 parent 63d0daa commit 2c356eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,10 @@ export const ContactRow: React.FC<Props> = ({ contact }) => {
message={
<Trans
t={t}
defaults="<p>This contact will be anonymized in your {{appName}} organization. This is permanent and can't be recovered. Only anonymize if you are 100% confident that you are looking at the correct contact.</p><br /><p>A contact placeholder will remain with a name like “DataPrivacy, Deleted”. Gift data will remain. Other data such as notes and tasks will be removed. Status will be set as “Never Ask”. Newsletter set to 'N/A'. You can request removal across all other systems at [email protected].</p>"
defaults="<p>This contact will be anonymized in your {{appName}} organization. This is permanent and can't be recovered. Only anonymize if you are 100% confident that you are looking at the correct contact.</p><br /><p>A contact placeholder will remain with a name like “DataPrivacy, Deleted”. Gift data will remain. Other data such as notes and tasks will be removed. Status will be set as “Never Ask”. Newsletter set to 'N/A'. You can request removal across all other systems at {{serviceSupportEmail}}.</p>"
values={{
appName,
serviceSupportEmail: process.env.SERVICE_SUPPORT_EMAIL,
}}
shouldUnescape={true}
/>
Expand Down

0 comments on commit 2c356eb

Please sign in to comment.