mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:37:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@component('email.template.master', ['design' => 'light'])
 | 
						|
 | 
						|
@slot('header')
 | 
						|
    @component('email.components.header')
 | 
						|
        Migration completed
 | 
						|
    @endcomponent
 | 
						|
@endslot
 | 
						|
 | 
						|
@slot('greeting')
 | 
						|
	Hello,
 | 
						|
@endslot
 | 
						|
 | 
						|
We're happy to inform you that migration has been completed successfully. It is ready for you to review it.
 | 
						|
 | 
						|
@component('email.components.button', ['url' => url('/')])
 | 
						|
    Visit portal
 | 
						|
@endcomponent
 | 
						|
 | 
						|
 | 
						|
@slot('signature')
 | 
						|
Thank you, <br>
 | 
						|
Invoice Ninja    
 | 
						|
@endslot
 | 
						|
 | 
						|
@slot('footer')
 | 
						|
    @component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
 | 
						|
        For any info, please visit InvoiceNinja.
 | 
						|
    @endcomponent
 | 
						|
@endslot
 | 
						|
 | 
						|
@endcomponent |