Files
merchbay/resources/views/emails/contact_us.blade.php
webmaster b47e4e8d3c
All checks were successful
Deploy Production (merchbay.com) / deploy (push) Successful in 2m11s
dev (#1)
Co-authored-by: Frank John Begornia <frank.begornia@yahoo.com>
Reviewed-on: #1
2025-12-22 15:28:42 +00:00

25 lines
622 B
PHP
Executable File

<!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>Merchbay | Contact Us</title>
</head>
<body>
<h1>Merchbay - Contact Page</h1>
<p>
<strong>Name</strong><br><?php echo $name; ?>
</p>
<p>
<strong>Email Address</strong><br><?php echo $emailAddress; ?>
</p>
<p>
<strong>Message</strong><br><?php echo $msg; ?>
</p>
</body>
</html>