config/app dosyam:
'timezone' => 'Europe/Istanbul',
Sunucu saat bilgileri:
Local time: Thu 2021-09-09 09:23:27 +03
Universal time: Thu 2021-09-09 06:23:27 UTC
RTC time: Thu 2021-09-09 06:23:27
Time zone: Europe/Istanbul (+03, +0300)
System clock synchronized: no
systemd-timesyncd.service active: yes
RTC in local TZ: no
php.ini
date
date/time support enabled
timelib version 2020.03
"Olson" Timezone Database Version 0.system
Timezone Database internal
Default timezone Europe/Istanbul
Kernel.php
protected function scheduleTimezone(): string
{
return 'Europe/Istanbul';
}
Loglama yaptığımda yine bu saatlerde giriş yapmıyor. İşin garip tarafı:
Bazen ilk mail 10:30 , bazen 11:30 bazen 13:30 da loglamaya ilk giriş yapmış oluyor.
Burada tam olarak neyi kontrol etmem lazım?
Kullanım örnekleri:
protected string $emailDeliveryTime = "08:30";
protected function schedule(Schedule $schedule)
{
$schedule->command('cronJob:Mail Customer -S customer1')->dailyAt($this->emailDeliveryTime);
$schedule->command('cronJob:Mail Customer -S customer2 --siteProcess=Tahsilat')->dailyAt($this->emailDeliveryTime);
}