20 lines
489 B
PHP
20 lines
489 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Feedback Mail From IKEA Price Crawler</title>
|
|
</head>
|
|
<body>
|
|
<h3>User Detail:</h3>
|
|
|
|
<h4>Name: {{ $data['name'] }}</h4>
|
|
<h4>Email: {{ $data['email'] }}</h4>
|
|
<h4>Subject: {{ $data['subject'] }}</h4>
|
|
|
|
<hr/>
|
|
<p>{{ $data['message'] }}</p>
|
|
</body>
|
|
</html>
|