mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 14:47:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('emails.master_user')
 | |
| 
 | |
| @section('body')
 | |
|     <div>
 | |
|         {{ trans('texts.email_salutation', ['name' => $userName]) }}
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         {{ trans("texts.notification_{$entityType}_bounced", ['contact' => $contactName, 'invoice' => $invoiceNumber]) }}
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         {{ $emailError }}
 | |
|     </div>
 | |
|      
 | |
|     <div>
 | |
|         {{ trans('texts.email_signature') }} <br/>
 | |
|         {{ trans('texts.email_from') }}
 | |
|     </div>
 | |
| @stop |