This commit is contained in:
James Cole
2018-05-26 13:55:11 +02:00
parent dcfea20973
commit 73aef1b9a4
11 changed files with 308 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
{% include 'emails.header-html' %}
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
Somebody (hopefully you) just created a new Firefly III API Access Token for your user account.
</p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
With this token, they can access <strong>all</strong> of your financial records through the Firefly III API.
</p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
If this wasn't you, please revoke this token as soon as possible at {{ route('profile.index') }}.
</p>
{% include 'emails.footer-html' %}

View File

@@ -0,0 +1,7 @@
{% include 'emails.header-text' %}
Somebody (hopefully you) just created a new Firefly III API Access Token for your user account.
With this token, they can access all of your financial records through the Firefly III API.
If this wasn't you, please revoke this token as soon as possible at {{ route('profile.index') }}.
{% include 'emails.footer-text' %}

View File

@@ -0,0 +1,14 @@
{% include 'emails.header-html' %}
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It's labeled "{{ client.name }}"
and has callback URL <span style="font-family: monospace;">{{ client.redirect }}</span>.
</p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
With this client, they can access <strong>all</strong> of your financial records through the Firefly III API.
</p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
If this wasn't you, please revoke this client as soon as possible at {{ route('profile.index') }}.
</p>
{% include 'emails.footer-html' %}

View File

@@ -0,0 +1,9 @@
{% include 'emails.header-text' %}
Somebody (hopefully you) just created a new Firefly III API OAuth Client for your user account. It's labeled "{{ client.name }}" and has callback URL:
{{ client.redirect }}
With this client, they can access <strong>all</strong> of your financial records through the Firefly III API.
If this wasn't you, please revoke this client as soon as possible at {{ route('profile.index') }}.
{% include 'emails.footer-text' %}