1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/resources/views/emails/partials/account_logo.blade.php

12 lines
431 B
PHP
Raw Normal View History

2015-12-02 14:26:06 +01:00
@if ($account->hasLogo())
@if ($account->website)
<a href="{{ $account->website }}" style="color: #19BB40; text-decoration: underline;">
@endif
2019-01-30 12:00:26 +01:00
<img src="{{ isset($message) ? $message->embed($account->getLogoPath()) : 'cid:' . $account->getLogoName() }}" height="50" style="height:50px; max-width:140px; margin-left: 33px; padding-top: 2px" alt=""/>
2015-12-02 14:26:06 +01:00
@if ($account->website)
</a>
@endif
@endif