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

@@ -17,6 +17,6 @@
<br/><br/>
<p>To resolve this issue, please verify the login credentials associated with the connector and update them if necessary.</p>
<p>Thank you for your attention,<br/>
Sincerely,<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -9,7 +9,7 @@
<strong>Detection Date:</strong> {{ domain.updatedAt | date("c") }}<br/>
<br/>
This domain has been identified as deleted and is potentially available for registration until it is registered by another party.<br/><br/>
Thank you for your understanding,<br/>
Sincerely,<br/>
Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -14,7 +14,7 @@
<li>A temporary interruption is affecting the registration of this domain name.</li>
</ul>
<br/><br/>
<p>Thank you for your understanding,<br/>
Sincerely,<br/>
<p>Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

View File

@@ -14,7 +14,7 @@
<li>A temporary outage affects the provision of domain name information.</li>
</ul>
<br/><br/>
<p>Thank you for your understanding,<br/>
Sincerely,<br/>
<p>Thank you for your attention.<br/>
Best regards<br/>
</p>
{% endblock %}

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 %}