mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
New code for email address change in profile. See #857
This commit is contained in:
18
resources/views/emails/confirm-email-change-html.twig
Normal file
18
resources/views/emails/confirm-email-change-html.twig
Normal file
@@ -0,0 +1,18 @@
|
||||
{% include 'emails.header-html' %}
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it.
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The old email addres was: {{ oldEmail }}
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The new email address is: <strong>{{ newEmail }}</strong>
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
You cannot use Firefly III until you confirm this change. Please follow the link below to do so.
|
||||
</p>
|
||||
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
<a href="{{ uri }}">{{ uri }}</a>
|
||||
</p>
|
||||
{% include 'emails.footer-html' %}
|
9
resources/views/emails/confirm-email-change-text.twig
Normal file
9
resources/views/emails/confirm-email-change-text.twig
Normal file
@@ -0,0 +1,9 @@
|
||||
{% include 'emails.header-text' %}
|
||||
You or somebody with access to your Firefly III account has changed your email address. If you did not expect this message, please ignore and delete it.
|
||||
|
||||
The old email addres was: {{ oldEmail }}
|
||||
|
||||
The new email address is: {{ newEmail }}
|
||||
|
||||
You cannot use Firefly III until you confirm this change. Please follow the link to do so: {{ uri }}
|
||||
{% include 'emails.footer-text' %}
|
18
resources/views/emails/undo-email-change-html.twig
Normal file
18
resources/views/emails/undo-email-change-html.twig
Normal file
@@ -0,0 +1,18 @@
|
||||
{% include 'emails.header-html' %}
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
You or somebody with access to your Firefly III account has changed your email address.
|
||||
If you did not expect this to happen, you <strong>must</strong> follow the "undo"-link below to protect your account!
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
If you initiated this change, you may safely ignore this message.
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The old email addres was: <strong>{{ oldEmail }}</strong>
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
The new email address is: {{ newEmail }}
|
||||
</p>
|
||||
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
|
||||
To undo the change, follow this link: <a href="{{ uri }}">{{ uri }}</a>
|
||||
</p>
|
||||
{% include 'emails.footer-html' %}
|
12
resources/views/emails/undo-email-change-text.twig
Normal file
12
resources/views/emails/undo-email-change-text.twig
Normal file
@@ -0,0 +1,12 @@
|
||||
{% include 'emails.header-text' %}
|
||||
You or somebody with access to your Firefly III account has changed your email address. If you did not expect this to happen,
|
||||
you must follow the "undo"-link below to protect your account!
|
||||
|
||||
If you initiated this change, you may safely ignore this message.
|
||||
|
||||
The old email addres was: {{ oldEmail }}
|
||||
|
||||
The new email address is: {{ newEmail }}
|
||||
|
||||
To undo the change, follow this link: {{ uri }}
|
||||
{% include 'emails.footer-text' %}
|
Reference in New Issue
Block a user