1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/email/template/plain.blade.php

50 lines
1.2 KiB
PHP
Raw Normal View History

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2020-08-18 16:34:49 +02:00
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2022-03-03 02:23:55 +01:00
<title></title>
</head>
2020-08-18 16:34:49 +02:00
2021-04-21 17:56:18 +02:00
<div id="content-wrapper">
{!! $body !!}
</div>
@if($signature)
<tr>
2021-04-21 17:56:18 +02:00
<td>
<p>{!! $signature !!}</p>
</td>
</tr>
2021-04-21 17:56:18 +02:00
@endif
2020-09-28 11:09:45 +02:00
@isset($links)
@if(count($links) >=1)
<p><strong>{{ ctrans('texts.attachments') }}</strong></p>
@endif
@foreach($links as $link)
<tr>
<td>
<p> {!! $link ?? '' !!}</p>
</td>
</tr>
@endforeach
@endisset
2021-04-21 17:56:18 +02:00
@isset($whitelabel)
@if(!$whitelabel)
<p>
<a href="https://invoiceninja.com" target="_blank">
{{ __('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }}
</a>
</p>
@endif
@endisset
2024-01-17 17:41:54 +01:00
2024-01-31 06:46:29 +01:00
@isset($email_preferences)
2024-02-01 09:45:45 +01:00
<p><a href="{!! $email_preferences !!}">{{ ctrans('texts.unsubscribe') }}</a></p>
2024-01-31 06:46:29 +01:00
@endisset