Overview
The invitation link being sent via email is sent as hyperlink. Developers might want to send the invitation link as plain text.
This article provides an overview on how to configure the email template for the invitation link to be sent as plain text.
Applies To
- Invitation Link
Solution
This can be achieved in the User Invitation email template.
Navigate to Dashboard > Branding > Email Templates > User Invitation and modify the following code:
<a href="{{ url | escape }}" style="color:#0a84ae; text-decoration:none;"
>{{ url | escape }}</a
With this code:
<p style="" href="">{{ url | escape }}" style="color:#0a84ae; text-decoration:none;"
>{{ url | escape }}</p
Please test this and any other changes in a test environment to make sure it works as desired.