mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:07:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			831 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			831 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('emails.master_user')
 | |
| 
 | |
| @section('markup')
 | |
|     @if ($account->enable_email_markup)
 | |
|         @include('emails.partials.user_view_action')
 | |
|     @endif
 | |
| @stop
 | |
| 
 | |
| @section('body')
 | |
|     <div>
 | |
|         {{ trans('texts.email_salutation', ['name' => $userName]) }}
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         {{ trans("texts.notification_{$entityType}_sent", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         <center>
 | |
|             @include('partials.email_button', [
 | |
|                 'link' => $invoiceLink,
 | |
|                 'field' => "view_{$entityType}",
 | |
|                 'color' => '#0b4d78',
 | |
|             ])
 | |
|         </center>
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         {{ trans('texts.email_signature') }} <br/>
 | |
|         {{ trans('texts.email_from') }}
 | |
|     </div>
 | |
| @stop |