mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: add trackedEppStatus field in Watchlist
This commit is contained in:
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
23
templates/emails/success/domain_status_updated.twig
Normal file
23
templates/emails/success/domain_status_updated.twig
Normal 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 %}
|
||||
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user