mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 01:11:43 +02:00
Handling contact verifications
This commit is contained in:
parent
44e42dd0fb
commit
637cabf95f
19 changed files with 612 additions and 5 deletions
|
@ -0,0 +1,34 @@
|
|||
<%
|
||||
contact = RegistrantPresenter.new(registrant: @contact, view: self)
|
||||
registrar = RegistrarPresenter.new(registrar: @contact.registrar, view: self)
|
||||
%>
|
||||
Tere <%= contact.name %>,
|
||||
<br><br>
|
||||
Teie registripidaja <%= registrar.name %> on palunud Teil kinnitada oma isikut, et jätkata domeeni toimingutega.
|
||||
<br><br>
|
||||
Palun kinnitage oma isikut, et jätkata.
|
||||
<br><br>
|
||||
<a href="<%= @verification_link %>" style="display: inline-block; padding: 10px 20px; background-color: #007BFF; color: white; text-decoration: none; border-radius: 5px;">Jätka eeID-ga</a>
|
||||
<br><br>
|
||||
Kontaktandmed:<br>
|
||||
<%= render 'mailers/shared/registrant/registrant.et.html', registrant: contact, with_phone: true %>
|
||||
<br><br>
|
||||
Probleemide korral pöörduge oma registripidaja poole:
|
||||
<%= render 'mailers/shared/registrar/registrar.et.html', registrar: registrar %>
|
||||
<%= render 'mailers/shared/signatures/signature.et.html' %>
|
||||
<hr>
|
||||
<br><br>
|
||||
Hi <%= contact.name %>,
|
||||
<br><br>
|
||||
Your registrar <%= registrar.name %> has requested that you verify your identity in order to proceed with domain actions.
|
||||
<br><br>
|
||||
Please confirm your identity to continue.
|
||||
<br><br>
|
||||
<a href="<%= @verification_link %>" style="display: inline-block; padding: 10px 20px; background-color: #007BFF; color: white; text-decoration: none; border-radius: 5px;">Continue with eeID</a>
|
||||
<br><br>
|
||||
Contact information:<br>
|
||||
<%= render 'mailers/shared/registrant/registrant.en.html', registrant: contact, with_phone: true %>
|
||||
<br><br>
|
||||
In case of problems please turn to your registrar:
|
||||
<%= render 'mailers/shared/registrar/registrar.en.html', registrar: registrar %>
|
||||
<%= render 'mailers/shared/signatures/signature.en.html' %>
|
|
@ -0,0 +1,31 @@
|
|||
<%
|
||||
contact = RegistrantPresenter.new(registrant: @contact, view: self)
|
||||
registrar = RegistrarPresenter.new(registrar: @contact.registrar, view: self)
|
||||
%>
|
||||
Tere <%= contact.name %>,
|
||||
|
||||
Teie registripidaja <%= registrar.name %> on palunud teil kinnitada oma isikut, et jätkata domeeni toimingutega.
|
||||
Palun kinnitage oma isikut, klõpsates alloleval lingil:
|
||||
<%= @verification_link %>
|
||||
|
||||
Kontaktandmed:
|
||||
<%= render 'mailers/shared/registrant/registrant.et.text', registrant: contact, with_phone: true %>
|
||||
|
||||
Palun veenduge, et muudatus on korrektne ning probleemide korral pöörduge oma registripidaja poole:
|
||||
<%= render 'mailers/shared/registrar/registrar.et.text', registrar: registrar %>
|
||||
<%= render 'mailers/shared/signatures/signature.et.text' %>
|
||||
|
||||
----------------------------------------------------------------------------------
|
||||
|
||||
Hi <%= contact.name %>,
|
||||
|
||||
Your registrar <%= registrar.name %> has requested that you verify your identity in order to proceed with domain actions.
|
||||
Please confirm your identity to continue by clicking the link below:
|
||||
<%= @verification_link %>
|
||||
|
||||
Contact information:
|
||||
<%= render 'mailers/shared/registrant/registrant.en.text', registrant: contact, with_phone: true %>
|
||||
|
||||
In case of problems please turn to your registrar:
|
||||
<%= render 'mailers/shared/registrar/registrar.en.text', registrar: registrar %>
|
||||
<%= render 'mailers/shared/signatures/signature.en.text' %>
|
Loading…
Add table
Add a link
Reference in a new issue