One Hat Cyber Team
Your IP :
216.73.217.126
Server IP :
185.33.55.30
Server :
Linux cl30.webspacecontrol.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.1.34
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
esetkocsi
/
www
/
resources
/
views
/
emails
/
View File Name :
submit_form.blade.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> /* Add your custom email styles here */ /* Az alábbi stílusokat az e-mail kialakításához használjuk */ body { background-color: #f3f3f3; font-family: Arial, sans-serif; margin: 0; padding: 0; } .container { max-width: 600px; margin: 0 auto; background-color: #ffffff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .header { text-align: center; background-color: #007BFF; color: #fff; padding: 20px 0; border-radius: 2%; } h1 { font-size: 24px; } .content { padding: 20px 0; } p { font-size: 16px; line-height: 1.6; color: #333; } .button { display: inline-block; background-color: #007BFF; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 5px; } .footer { text-align: center; background-color: #333; color: #fff; padding: 10px 0; } </style> </head> <body> <div class="container"> @php use App\Models\EmailTemplate; $content = EmailTemplate::where('view_name','submit_form')->first(); @endphp <div class="header"> <h1>{{str_replace(['[NAME]'],$customer,$content->header)}}</h1> </div> <div class="content"> {!! str_replace(['[NAME]','[EMAIL]','[MESSAGE]'],[$customer,$email,$messages],$content->content) !!} </div> </div> </body> </html>