feat: add trackedEppStatus field in Watchlist

This commit is contained in:
Maël Gangloff
2025-10-19 21:37:52 +02:00
parent 626cb47f03
commit 0888033bd8
22 changed files with 565 additions and 225 deletions

View File

@@ -8,7 +8,7 @@
<a href="{{ signedUrl|raw }}">Confirm my Email</a>.
This link will expire in {{ expiresAtMessageKey|trans(expiresAtMessageData, 'VerifyEmailBundle') }}.
<br/><br/>
Thank you for your understanding,<br/>
Sincerely,<br/>
Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -9,7 +9,7 @@
<strong>Domain name:</strong> {{ domain.ldhName }}<br/>
<strong>Connector provider :</strong> {{ provider }}<br/>
<br/><br/>
Thank you for your understanding,<br/>
Sincerely,<br/>
Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -0,0 +1,23 @@
{% extends "emails/base.html.twig" %}
{% set email_color = '#0056b3' %}
{% set title = 'Domain Watchdog Alert' %}
{% block content %}
<p>Hello,</p>
<p>We would like to inform you that a change has been detected in the EPP status of one of the domains on your watchlist.</p>
<p>
<strong>Domain name:</strong> {{ domain.ldhName }}<br/>
<strong>Current EPP status:</strong> {{ domain.status | join(' | ') }}<br/>
{% if domainStatus.addStatus is not empty %}
<strong>[+] Added status:</strong> {{ domainStatus.addStatus | join(' | ') }}<br/>
{% endif %}
{% if domainStatus.deleteStatus is not empty %}
<strong>[-] Removed status:</strong> {{ domainStatus.deleteStatus | join(' | ') }}<br/>
{% endif %}
</p>
<p>
Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -9,7 +9,7 @@
<strong>Action:</strong> {{ event.action }}<br/>
<strong>Effective Date:</strong> {{ event.date | date("c") }}<br/>
<br/><br/>
Thank you for your understanding,<br/>
Sincerely,<br/>
Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}