mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #15763 from Godmartinz/no_to_email_check
Fixed emails not being send if target has no email or if not instance of User. Cc_emails will still be sent.
This commit is contained in:
commit
5897d37fcf
|
@ -74,13 +74,17 @@ class CheckoutableListener
|
||||||
* 2. The item has a EULA
|
* 2. The item has a EULA
|
||||||
* 3. The item should send an email at check-in/check-out
|
* 3. The item should send an email at check-in/check-out
|
||||||
*/
|
*/
|
||||||
if ($notifiable instanceof User && $notifiable->email != '') {
|
|
||||||
if ($event->checkoutable->requireAcceptance() || $event->checkoutable->getEula() ||
|
if ($event->checkoutable->requireAcceptance() || $event->checkoutable->getEula() ||
|
||||||
(method_exists($event->checkoutable, 'checkin_email') && $event->checkoutable->checkin_email())) {
|
(method_exists($event->checkoutable, 'checkin_email') && $event->checkoutable->checkin_email())) {
|
||||||
|
if (!empty($notifiable->email)) {
|
||||||
Mail::to($notifiable)->cc($ccEmails)->send($mailable);
|
Mail::to($notifiable)->cc($ccEmails)->send($mailable);
|
||||||
|
} else {
|
||||||
|
Mail::cc($ccEmails)->send($mailable);
|
||||||
|
}
|
||||||
Log::info('Sending email, Locale: ' . ($event->checkedOutTo->locale ?? 'default'));
|
Log::info('Sending email, Locale: ' . ($event->checkedOutTo->locale ?? 'default'));
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// Send Webhook notification
|
// Send Webhook notification
|
||||||
if ($this->shouldSendWebhookNotification()) {
|
if ($this->shouldSendWebhookNotification()) {
|
||||||
if (Setting::getSettings()->webhook_selected === 'microsoft') {
|
if (Setting::getSettings()->webhook_selected === 'microsoft') {
|
||||||
|
@ -148,13 +152,16 @@ class CheckoutableListener
|
||||||
* 3. The item should send an email at check-in/check-out
|
* 3. The item should send an email at check-in/check-out
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ($notifiable instanceof User && $notifiable->email != '') {
|
|
||||||
if ($event->checkoutable->requireAcceptance() || $event->checkoutable->getEula() ||
|
if ($event->checkoutable->requireAcceptance() || $event->checkoutable->getEula() ||
|
||||||
(method_exists($event->checkoutable, 'checkin_email') && $event->checkoutable->checkin_email())) {
|
(method_exists($event->checkoutable, 'checkin_email') && $event->checkoutable->checkin_email())) {
|
||||||
|
if (!empty($notifiable->email)) {
|
||||||
Mail::to($notifiable)->cc($ccEmails)->send($mailable);
|
Mail::to($notifiable)->cc($ccEmails)->send($mailable);
|
||||||
|
} else {
|
||||||
|
Mail::cc($ccEmails)->send($mailable);
|
||||||
|
}
|
||||||
Log::info('Sending email, Locale: ' . $event->checkedOutTo->locale);
|
Log::info('Sending email, Locale: ' . $event->checkedOutTo->locale);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// Send Webhook notification
|
// Send Webhook notification
|
||||||
if ($this->shouldSendWebhookNotification()) {
|
if ($this->shouldSendWebhookNotification()) {
|
||||||
Notification::route(Setting::getSettings()->webhook_selected, Setting::getSettings()->webhook_endpoint)
|
Notification::route(Setting::getSettings()->webhook_selected, Setting::getSettings()->webhook_endpoint)
|
||||||
|
|
|
@ -24,8 +24,6 @@ use App\Http\Controllers\Auth\LoginController;
|
||||||
use App\Http\Controllers\Auth\ForgotPasswordController;
|
use App\Http\Controllers\Auth\ForgotPasswordController;
|
||||||
use App\Http\Controllers\Auth\ResetPasswordController;
|
use App\Http\Controllers\Auth\ResetPasswordController;
|
||||||
use App\Livewire\Importer;
|
use App\Livewire\Importer;
|
||||||
use App\Models\Asset;
|
|
||||||
use App\Models\User;
|
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
use Illuminate\Support\Facades\Auth;
|
use Illuminate\Support\Facades\Auth;
|
||||||
|
|
||||||
|
@ -551,22 +549,3 @@ Route::middleware(['auth'])->get(
|
||||||
'/',
|
'/',
|
||||||
[DashboardController::class, 'index']
|
[DashboardController::class, 'index']
|
||||||
)->name('home');
|
)->name('home');
|
||||||
Route::get('/test-email', function() {
|
|
||||||
$item = Asset::find(1); // Load some test data
|
|
||||||
$admin = User::find(1);
|
|
||||||
$target = User::find(2);
|
|
||||||
$acceptance = null; // Simulate acceptance data
|
|
||||||
$note = 'Test note';
|
|
||||||
|
|
||||||
$fields = [];
|
|
||||||
if (($item->model) && ($item->model->fieldset)) {
|
|
||||||
$fields = $item->model->fieldset->fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new \App\Mail\CheckoutAssetMail(
|
|
||||||
$item,
|
|
||||||
$admin,
|
|
||||||
$target,
|
|
||||||
$acceptance,
|
|
||||||
$note);
|
|
||||||
});
|
|
Loading…
Reference in a new issue