shareit/resources/views/emails/itemAvailable.blade.php
Bruno Fontes a3e9abbd4c
Improving email contents
On email body, it usually appeared as the button to the website
would take directly an action, so the text was changed to make
sure the user will understand he is only going to access
the website.
2018-09-22 15:47:24 -03:00

15 lines
397 B
PHP

@component('mail::message')
Hi, {{$username}},
&nbsp;<br>
&nbsp;<br>
#Good news: {{$item->name}} is available!
&nbsp;<br>
The item <em>{{$item->name}} ({{$item->product->name}})</em> is now available on **Share&nbsp;It**.
&nbsp;<br>
**Take It** before anyone else at the website:
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
Share It!
@endcomponent
@endcomponent