35 lines
		
	
	
	
		
			941 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			941 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>Thanks for Subscribing!</title>
 | |
|     <style>
 | |
|         body {
 | |
|             font-family: Arial, sans-serif;
 | |
|             line-height: 1.6;
 | |
|             color: #333;
 | |
|         }
 | |
|         .container {
 | |
|             max-width: 600px;
 | |
|             margin: 20px auto;
 | |
|             padding: 20px;
 | |
|             border: 1px solid #ddd;
 | |
|         }
 | |
|         a {
 | |
|             color: #007bff;
 | |
|             text-decoration: none;
 | |
|         }
 | |
|         a:hover {
 | |
|             text-decoration: underline;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
|     <div class="container">
 | |
|         <h2>Thanks for subscribing to RideAware newsletter!</h2>
 | |
|         <p>We're excited to share our journey with you.</p>
 | |
|         <p>If you ever wish to unsubscribe, please click <a href="{{ unsubscribe_link }}">here</a>.</p>
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 | 
