diff options
author | Timshel <[email protected]> | 2024-09-01 15:55:41 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-01 15:55:41 +0200 |
commit | 248e561b3fe6a8172751374df980c6cd43c841d5 (patch) | |
tree | e8cffd2c008548b7cd183b2734478ad45fa491ca /src/static | |
parent | 55623ad9c67abba7f2136858226a08854ce0f050 (diff) | |
download | vaultwarden-248e561b3fe6a8172751374df980c6cd43c841d5.tar.gz vaultwarden-248e561b3fe6a8172751374df980c6cd43c841d5.zip |
Add orgUserHasExistingUser parameters to org invite (#4827)
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/templates/email/send_org_invite.hbs | 4 | ||||
-rw-r--r-- | src/static/templates/email/send_org_invite.html.hbs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/static/templates/email/send_org_invite.hbs b/src/static/templates/email/send_org_invite.hbs index be94d0e5..b2c46f50 100644 --- a/src/static/templates/email/send_org_invite.hbs +++ b/src/static/templates/email/send_org_invite.hbs @@ -3,8 +3,8 @@ Join {{{org_name}}} You have been invited to join the *{{org_name}}* organization. -Click here to join: {{url}}/#/accept-organization/?organizationId={{org_id}}&organizationUserId={{org_user_id}}&email={{email}}&organizationName={{org_name_encoded}}&token={{token}} +Click here to join: {{url}} If you do not wish to join this organization, you can safely ignore this email. -{{> email/email_footer_text }}
\ No newline at end of file +{{> email/email_footer_text }} diff --git a/src/static/templates/email/send_org_invite.html.hbs b/src/static/templates/email/send_org_invite.html.hbs index 55b98145..a78a89e9 100644 --- a/src/static/templates/email/send_org_invite.html.hbs +++ b/src/static/templates/email/send_org_invite.html.hbs @@ -9,7 +9,7 @@ Join {{{org_name}}} </tr> <tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> <td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center"> - <a href="{{url}}/#/accept-organization/?organizationId={{org_id}}&organizationUserId={{org_user_id}}&email={{email}}&organizationName={{org_name_encoded}}&token={{token}}" + <a href="{{url}}" clicktracking=off target="_blank" style="color: #ffffff; text-decoration: none; text-align: center; cursor: pointer; display: inline-block; border-radius: 5px; background-color: #3c8dbc; border-color: #3c8dbc; border-style: solid; border-width: 10px 20px; margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;"> Join Organization Now </a> @@ -21,4 +21,4 @@ Join {{{org_name}}} </td> </tr> </table> -{{> email/email_footer }}
\ No newline at end of file +{{> email/email_footer }} |