One Hat Cyber Team
Your IP :
216.73.216.11
Server IP :
87.118.122.21
Server :
Linux svdm-server5.de 6.12.57+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.57-1 (2025-11-05) x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
users
/
svd-saarleute
/
www
/
_go_biz
/
app
/
Mail
/
Edit File:
ContactFormMail.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Mail\Mailables\Content; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Queue\SerializesModels; class ContactFormMail extends Mailable { use Queueable, SerializesModels; public $data; /** * Create a new message instance. */ public function __construct($data) { $this->data = $data; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( from: config('mail.from.address'), replyTo: [$this->data['email']], subject: __('Contact Form Submission'), ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.sent-mail', with: [ 'data' => $this->data, ] ); } /** * Get the attachments for the message. * * @return array<int, \Illuminate\Mail\Mailables\Attachment> */ public function attachments(): array { return []; } }
Simpan