mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
5b36c881a0
adjust the mail body
25 lines
599 B
PHP
25 lines
599 B
PHP
<x-mail::message>
|
|
# Speedtest Threshold Breached - #{{ $id }}
|
|
|
|
A new speedtest was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.
|
|
|
|
<x-mail::table>
|
|
| **Metric** | **Threshold** | **Value** |
|
|
|:-----------|:--------------|----------:|
|
|
@foreach ($metrics as $item)
|
|
| {{ $item['name'] }} | {{ $item['threshold'] }} | {{ $item['value'] }} |
|
|
@endforeach
|
|
</x-mail::table>
|
|
|
|
<x-mail::button :url="$url">
|
|
View Results
|
|
</x-mail::button>
|
|
|
|
<x-mail::button :url="$speedtest_url">
|
|
View Results on Ookla
|
|
</x-mail::button>
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|