hypothetical/resources/views/email/contact.blade.php

12 lines
285 B
PHP
Raw Normal View History

2016-01-03 19:08:53 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-03-19 17:43:20 -04:00
<meta charset="UTF-8" />
2016-01-03 19:08:53 -05:00
</head>
<body>
<p><strong>Name:</strong> {{ $contact['name'] }}</p>
<p><strong>Email:</strong> {{ $contact['email'] }}</p>
<p>{{ $contact['message'] }}</p>
</body>
</html>