Files
newznab-tmux/app/Http/Controllers/ContactUsController.php
T
2026-02-11 14:02:26 +01:00

55 lines
1.8 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Http\Requests\ContactContactURequest;
use App\Jobs\SendContactUsEmail;
class ContactUsController extends BasePageController
{
/**
* @throws \Illuminate\Validation\ValidationException
*/
public function contact(ContactContactURequest $request): mixed
{
$msg = '';
if ($request->has('useremail')) {
$email = $request->input('useremail');
$mailTo = config('mail.from.address');
$mailBody = 'Values submitted from contact form: ';
$captchaFieldName = \App\Support\CaptchaHelper::getResponseFieldName();
foreach ($request->all() as $key => $value) {
if ($key !== 'submit' && $key !== '_token' && $key !== 'g-recaptcha-response' && $key !== 'cf-turnstile-response') {
$mailBody .= "$key : $value".PHP_EOL;
}
}
if (! preg_match("/\n/i", $request->input('useremail'))) {
SendContactUsEmail::dispatch($email, $mailTo, $mailBody)->onQueue('contactemail');
}
$msg = "<h2 style='text-align:center;'>Thank you for getting in touch with ".config('app.name').'.</h2>';
}
return $this->showContactForm($msg);
}
/**
* @return \Illuminate\View\View
*
* @throws \Exception
*/
public function showContactForm(string $msg = '')
{
return view('contact.index', [
'title' => 'Contact '.config('app.name'),
'meta_title' => 'Contact '.config('app.name'),
'meta_keywords' => 'contact us,contact,get in touch,email',
'meta_description' => 'Contact us at '.config('app.name').' and submit your feedback',
'msg' => $msg,
]);
}
}