Skip to content

Commit d19c176

Browse files
committed
Replace <br> tags with <p> tags in new user invitation email
1 parent 1863d8d commit d19c176

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
{{__('Hi!')}}
1+
<p>{{__('Hi!')}}</p>
22

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

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

8-
<br><br>
9-
10-
<a href="{{ url('register?invitation='.$invitation->token) }}">{{ url('register?invitation='.$invitation->token) }}</a>
11-
12-
<br><br>
13-
14-
{{__('See you soon!')}}
12+
<p>{{__('See you soon!')}}</p>

0 commit comments

Comments
 (0)