Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TOS to start email to decrease accidental abuse #2073

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions templates/emails/transactional/activation.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@

{% block content %}

{{ render_text("Thank you for choosing SimpleLogin.") }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below within 1 hour.") }}
{{ render_text("If it wasn't you, maybe someone entered your email by mistake. In this case you can ignore this mail.") }}
{{ render_button("Verify email", activation_link) }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
{{ raw_url(activation_link) }}
{{ render_text("Thank you for choosing SimpleLogin.") }}

{{ render_text("Before proceeding, please read the following prohibited actions and then click the button below to continue.") }}
{{ render_text("<strong>No Mass Signups:</strong><br>Do not use SimpleLogin to create large numbers of accounts on other websites or services.") }}
{{ render_text("<strong>No Multiple Free Accounts:</strong><br>Do not create multiple free accounts as this is not considered an acceptable use of the service.") }}
{{ render_text("<strong>No Marking Emails as Spam:</strong><br>Do not mark emails forwarded to you by SimpleLogin as spam.") }}

{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below within 1 hour.") }}
{{ render_text("If it wasn't you, maybe someone entered your email by mistake. In this case you can ignore this mail.") }}
{{ render_button("Verify email", activation_link) }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
{{ raw_url(activation_link) }}
{% endblock %}
11 changes: 11 additions & 0 deletions templates/emails/transactional/activation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
{% block content %}
Thank you for choosing SimpleLogin.

Before proceeding, please read the following prohibited actions and then click the button below to continue.

No Mass Signups:
Do not use SimpleLogin to create large numbers of accounts on other websites or services.

No Multiple Free Accounts:
Do not create multiple free accounts as this is not considered an acceptable use of the service.

No Marking Emails as Spam:
Do not mark emails forwarded to you by SimpleLogin as spam.

To get started, please confirm that {{email}} is your email address using this link {{activation_link}} within 1 hour.

If it wasn't you, maybe someone entered your email by mistake. In this case you can ignore this mail.
Expand Down