diff --git a/app/Jobs/SendConfirmationForWaitlistJob.php b/app/Jobs/SendConfirmationForWaitlistJob.php index 3ff4982d9..041b418ec 100755 --- a/app/Jobs/SendConfirmationForWaitlistJob.php +++ b/app/Jobs/SendConfirmationForWaitlistJob.php @@ -37,7 +37,7 @@ class SendConfirmationForWaitlistJob implements ShouldQueue $mail->subject('You are on the waitlist!'); send_user_an_email($mail, $this->email); } catch (\Throwable $th) { - send_internal_notification('SendConfirmationForWaitlistJob failed with error: ' . $th->getMessage()); + send_internal_notification("SendConfirmationForWaitlistJob failed for {$mail} with error: " . $th->getMessage()); ray($th->getMessage()); throw $th; }