test.blade.php 518 B

1234567891011121314151617181920
  1. @extends('emails.layout')
  2. @section('title')发送测试邮件@endsection
  3. @section('content')
  4. <table width="100%" cellpadding="0" cellspacing="0">
  5. <tr>
  6. <td class="content-block">
  7. {{ $content }}
  8. <br />
  9. 如非本人操作,请忽略此邮件!
  10. </td>
  11. </tr>
  12. <tr>
  13. <td class="content-block">
  14. &mdash; {{ Setting()->get('website_name') }}
  15. </td>
  16. </tr>
  17. </table>
  18. @endsection