email-order-report-ready-alert.blade.php 526 B

123456789
  1. @extends('emails.layout')
  2. @section('salutation')
  3. Hello {{$user->displayName()}},
  4. @endsection
  5. @section('content')
  6. <p class="f-fallback" style="color: #000; font-size: 15px; padding: 0 15px; line-height: 24px; margin: .4em 0 1.1875em;">Your lab results report is ready for download. Please click the link below to access lab report results.</p>
  7. @include('emails.call-to-action-button', ['link'=>$stringMappingConfig['productUrl'].'/my-account/orders/' . $storeOrder->uid, 'label' => 'View Order Lab Results'])
  8. @endsection