You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
URL path to an email template to use when notifying a user that a new identity has been linked to their account. (e.g. `https://www.example.com/path-to-email-template.html`)
746
-
`Email` and `IdentityProvider` variables are available.
746
+
`Email` and `Provider` variables are available.
747
747
748
748
Default Content (if template is unavailable):
749
749
750
750
```html
751
751
<h2>A new identity has been linked</h2>
752
752
753
753
<p>
754
-
A new identity ({{ .IdentityProvider }}) has been linked to your account {{
755
-
.Email }}.
754
+
A new identity ({{ .Provider }}) has been linked to your account {{ .Email }}.
756
755
</p>
757
756
<p>If you did not make this change, please contact support immediately.</p>
758
757
```
@@ -764,16 +763,16 @@ Whether to send a notification email when a new identity is linked to a user's a
URL path to an email template to use when notifying a user that an identity has been unlinked from their account. (e.g. `https://www.example.com/path-to-email-template.html`)
767
-
`Email` and `IdentityProvider` variables are available.
766
+
`Email` and `Provider` variables are available.
768
767
769
768
Default Content (if template is unavailable):
770
769
771
770
```html
772
771
<h2>An identity has been unlinked</h2>
773
772
774
773
<p>
775
-
An identity ({{ .IdentityProvider }}) has been unlinked from your account {{
776
-
.Email }}.
774
+
An identity ({{ .Provider }}) has been unlinked from your account {{ .Email
775
+
}}.
777
776
</p>
778
777
<p>If you did not make this change, please contact support immediately.</p>
0 commit comments