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

13 lines
286 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>
2017-09-26 18:18:07 -04:00
2016-01-03 19:08:53 -05:00
<body>
<p><strong>Name:</strong> {{ $contact['name'] }}</p>
<p><strong>Email:</strong> {{ $contact['email'] }}</p>
<p>{{ $contact['message'] }}</p>
</body>
</html>