All checks were successful
Deploy Production (crewsportswear.com) / deploy (push) Successful in 2m51s
24 lines
865 B
PHP
24 lines
865 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test Email — CREW Sportswear</title>
|
|
</head>
|
|
<body style="font-family: Arial, sans-serif; color: #333; padding: 20px;">
|
|
<h2 style="color: #d9534f;">CREW Sportswear — Test Email</h2>
|
|
<p>This is a test email to verify that the mail configuration is working correctly.</p>
|
|
<p>Sent to: <strong>{{ $recipient }}</strong></p>
|
|
<hr>
|
|
<p style="font-size: 12px; color: #777;">
|
|
<strong>Mail Config Used:</strong><br>
|
|
Driver: {{ $config['driver'] }}<br>
|
|
Host: {{ $config['host'] }}<br>
|
|
Port: {{ $config['port'] }}<br>
|
|
Username: {{ $config['username'] }}<br>
|
|
Encryption: {{ $config['encryption'] }}
|
|
</p>
|
|
<hr>
|
|
<p style="font-size: 12px; color: #aaa;">This is an automated test message from CREW Sportswear.</p>
|
|
</body>
|
|
</html>
|