2019-07-08 10:40:50 +02:00
|
|
|
-# ugly hack to know if the mail is creation confirmation or a password change confirmation
|
|
|
|
- if @user.unconfirmed_email.nil?
|
|
|
|
- content_for(:title, 'Activez votre compte')
|
2018-05-14 14:21:03 +02:00
|
|
|
|
2019-07-08 10:40:50 +02:00
|
|
|
%p
|
|
|
|
Bonjour,
|
2018-05-14 14:21:03 +02:00
|
|
|
|
2019-07-08 10:40:50 +02:00
|
|
|
%p
|
|
|
|
Pour activer votre compte sur demarches-simplifiees.fr, veuillez cliquer sur le lien suivant :
|
|
|
|
= link_to(confirmation_url(@user, confirmation_token: @token), confirmation_url(@user, confirmation_token: @token))
|
|
|
|
|
|
|
|
- else
|
|
|
|
- content_for(:title, "Changement d'adresse email")
|
|
|
|
|
|
|
|
%p
|
|
|
|
Bonjour,
|
|
|
|
|
|
|
|
%p
|
|
|
|
Pour confirmer votre changement d'adresse email, veuillez cliquer sur le lien suivant :
|
|
|
|
= link_to(confirmation_url(@user, confirmation_token: @token), confirmation_url(@user, confirmation_token: @token))
|
2018-05-14 14:21:03 +02:00
|
|
|
|
2018-12-20 09:35:55 +01:00
|
|
|
= render partial: "layouts/mailers/signature"
|