72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <title>Thông báo tải lên file mới</title>
 | 
						|
    <style>
 | 
						|
        body {
 | 
						|
            font-family: Arial, sans-serif;
 | 
						|
            line-height: 1.6;
 | 
						|
            color: #333;
 | 
						|
            margin: 0;
 | 
						|
            padding: 0;
 | 
						|
        }
 | 
						|
        .container {
 | 
						|
            max-width: 600px;
 | 
						|
            margin: 0 auto;
 | 
						|
            padding: 20px;
 | 
						|
        }
 | 
						|
        .header {
 | 
						|
            background-color: #1a73e8;
 | 
						|
            color: white;
 | 
						|
            padding: 20px;
 | 
						|
            text-align: center;
 | 
						|
        }
 | 
						|
        .content {
 | 
						|
            padding: 20px;
 | 
						|
            background-color: #f9f9f9;
 | 
						|
        }
 | 
						|
        .button {
 | 
						|
            display: inline-block;
 | 
						|
            padding: 12px 24px;
 | 
						|
            background-color: #1a73e8;
 | 
						|
            color: white;
 | 
						|
            text-decoration: none;
 | 
						|
            border-radius: 4px;
 | 
						|
            margin: 20px 0;
 | 
						|
        }
 | 
						|
        .footer {
 | 
						|
            text-align: center;
 | 
						|
            padding: 20px;
 | 
						|
            background-color: #f5f5f5;
 | 
						|
            font-size: 12px;
 | 
						|
            color: #666;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <div class="container">
 | 
						|
        <div class="header">
 | 
						|
            <h1>Thông báo tải lên file mới</h1>
 | 
						|
        </div>
 | 
						|
        
 | 
						|
        <div class="content">
 | 
						|
            <p>Xin chào {{ $user->name }},</p>
 | 
						|
            
 | 
						|
            <p>{{ $description }} ở hệ thống APAC Tech.</p>
 | 
						|
            <p>Note: {{ $note }}</p>
 | 
						|
            <p>Vui lòng kiểm tra ngay thông tin bằng cách nhấn nút bên dưới:</p>
 | 
						|
            
 | 
						|
            <div style="text-align: center;">
 | 
						|
                <a href="{{ $url }}" class="button">Kiểm tra ngay</a>
 | 
						|
            </div>
 | 
						|
            
 | 
						|
            <p>Trân trọng,<br>Đội ngũ APAC Tech</p>
 | 
						|
        </div>
 | 
						|
        
 | 
						|
        <div class="footer">
 | 
						|
            <p>Email này được gửi tự động từ hệ thống APAC Tech. Vui lòng không trả lời email này.</p>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</body>
 | 
						|
</html> 
 |