Skip to content

Commit

Permalink
Replace <br> tags with <p> tags in new user invitation email
Browse files Browse the repository at this point in the history
  • Loading branch information
dljfield committed Apr 30, 2021
1 parent 1863d8d commit d19c176
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions resources/views/workspaces/emails/invitation-to-new-user.blade.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{{__('Hi!')}}
<p>{{__('Hi!')}}</p>

<br><br>
<p>
{{__(':userName has invited you to join their workspace on SendPortal!', ['userName' => $invitation->workspace->owner->name])}}
{{__('If you do not already have an account, you may click the following link to get started:')}}
</p>

{{__(':userName has invited you to join their workspace on SendPortal!', ['userName' => $invitation->workspace->owner->name])}}
{{__('If you do not already have an account, you may click the following link to get started:')}}
<p>
<a href="{{ url('register?invitation='.$invitation->token) }}">{{ url('register?invitation='.$invitation->token) }}</a>
</p>

<br><br>

<a href="{{ url('register?invitation='.$invitation->token) }}">{{ url('register?invitation='.$invitation->token) }}</a>

<br><br>

{{__('See you soon!')}}
<p>{{__('See you soon!')}}</p>

0 comments on commit d19c176

Please sign in to comment.