-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(partnership): set password email template (#86366)
Currently for partnerships, when a new account was created we were sending recover account email asking users to set their password. Half of the logic needed to send another email was done, but it was never finished. Now we have a new email template where we ask user to set their password upon account creation --------- Co-authored-by: Fabian Schindler <fabian.schindler@sentry.io>
- Loading branch information
1 parent
0112821
commit f34ac45
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{% extends "sentry/emails/base.html" %} | ||
|
||
{% load i18n %} | ||
|
||
{% block main %} | ||
<p>Welcome to Sentry. We created your account, you just need to set a password and you'll be all set.</p> | ||
|
||
<p><a href="{{ url|safe }}" class="btn">Set your Password</a></p> | ||
|
||
<p>Once you are in, you can:</p> | ||
<ul> | ||
<li>Monitor your code in production</li> | ||
<li>Get realtime notifications for errors and latency problems</li> | ||
<li>Have all the context to debug critical issues</li> | ||
</ul> | ||
|
||
<p>If you weren't expecting this email, please ignore it.</p> | ||
|
||
<p>The Sentry Team</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Welcome to Sentry. We created your account, you just need to set a password and you'll be all set. | ||
|
||
{{ url|safe }} | ||
|
||
Once you are in, you can: | ||
- Monitor your code in production | ||
- Get realtime notifications for errors and latency problems | ||
- Have all the context to debug critical issues | ||
|
||
If you weren't expecting this email, please ignore it. | ||
|
||
The Sentry Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters