Add checkin email template

This commit is contained in:
madd15
2015-07-24 10:29:44 +09:30
parent e8c8509ed3
commit b918ea88cc
+49
View File
@@ -0,0 +1,49 @@
@extends('emails/layouts/default')
@section('content')
<p>Hello {{{ $first_name }}},</p>
<p>The following item has been checkin.
<table>
<tr>
<td style="background-color:#ccc">
Asset Name:
</td>
<td>
<strong>{{{ $item_name }}}</strong>
</td>
</tr>
@if ($item_tag)
<tr>
<td style="background-color:#ccc">
Asset Tag:
</td>
<td>
<strong>{{{ $item_tag }}}</strong>
</td>
</tr>
@endif
<tr>
<td style="background-color:#ccc">
Checkin Date:
</td>
<td>
<strong>{{{ $checkin_date }}}</strong>
</td>
</tr>
@if ($note)
<tr>
<td style="background-color:#ccc">
Additional Notes:
</td>
<td>
<strong>{{{ $note }}}</strong>
</td>
</tr>
@endif
</table>
<p>{{{ Setting::getSettings()->site_name }}}</p>
@stop