78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | <html lang="en"> | ||
|  |   <head> | ||
|  |     <meta charset="UTF-8"/> | ||
|  |     <meta/> | ||
|  |     <title>Email verification code</title> | ||
|  |     <style> | ||
|  |       body { | ||
|  |         font-family: Arial, sans-serif; | ||
|  |         background-color: #f4f4f4; | ||
|  |         padding: 20px; | ||
|  |         margin: 0; | ||
|  |       } | ||
|  |       .container { | ||
|  |         background-color: #ffffff; | ||
|  |         border-radius: 8px; | ||
|  |         padding: 40px; | ||
|  |         max-width: 600px; | ||
|  |         margin: 0 auto; | ||
|  |         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | ||
|  |       } | ||
|  |       .header { | ||
|  |         text-align: center; | ||
|  |         color: #333; | ||
|  |         margin-bottom: 20px; | ||
|  |       } | ||
|  |       .code { | ||
|  |         font-size: 32px; | ||
|  |         font-weight: bold; | ||
|  |         color: #007bff; | ||
|  |         text-align: center; | ||
|  |         margin: 20px 0; | ||
|  |       } | ||
|  |       .message { | ||
|  |         color: #555; | ||
|  |         line-height: 1.6; | ||
|  |       } | ||
|  |       .footer { | ||
|  |         text-align: center; | ||
|  |         margin-top: 40px; | ||
|  |         font-size: 12px; | ||
|  |         color: #777; | ||
|  |       } | ||
|  |     </style> | ||
|  |   </head> | ||
|  |   <body> | ||
|  |     <div class="container"> | ||
|  |       <div class="header"> | ||
|  |         <h2>Your verification code</h2> | ||
|  |       </div> | ||
|  |       <p class="message"> | ||
|  |         Dear User, | ||
|  |         Thank you for using our services! You are currently verifying your account. To ensure the security of your account, please use the following verification code to complete the operation: | ||
|  |       </p> | ||
|  | 
 | ||
|  |       <div class="code"> | ||
|  |         {{code}} | ||
|  |          | ||
|  |       </div> | ||
|  | 
 | ||
|  |       <p class="message"> | ||
|  |         Please enter this verification code into the verification page to complete the login or verification operation. To protect your information security, please pay attention to the following matters: | ||
|  |         <br/> | ||
|  |         - This verification code is only used for the current operation and will automatically expire after 10 minutes. - | ||
|  |         <br/> | ||
|  |         Please do not tell the verification code to anyone else, including anyone claiming to be a customer service representative. Our staff will not ask you for this verification code. | ||
|  |         - | ||
|  |         <br/> | ||
|  |         If you did not request a verification code, it may be an error by someone else. You can ignore this email or contact customer support to ensure the security of your account. | ||
|  |         If you have any questions or need help, please feel free to contact our customer support team. We'll be happy to help you! | ||
|  |         <br/> | ||
|  |         <br/> | ||
|  |         【Lessie】 | ||
|  |         <br/> | ||
|  |       </p> | ||
|  |     </div> | ||
|  |   </body> | ||
|  | </html> |