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

12 lines
283 B
PHP
Raw Normal View History

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