Skip to content

Commit 41b34ae

Browse files
committed
Fix config path
1 parent b3e035a commit 41b34ae

4 files changed

+10
-10
lines changed

app/Mail/Dues/PaymentReminder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public function build(): self
3636
->withSymfonyMessage(static function (Email $email): void {
3737
$email->replyTo(
3838
new Address(
39-
config('payment_contact.email_address'),
40-
config('payment_contact.display_name')
39+
config('services.payment_contact.email_address'),
40+
config('services.payment_contact.display_name')
4141
)
4242
);
4343
})

app/Mail/Dues/TransactionReminder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public function build(): self
4343
->withSymfonyMessage(static function (Email $email): void {
4444
$email->replyTo(
4545
new Address(
46-
config('payment_contact.email_address'),
47-
config('payment_contact.display_name')
46+
config('services.payment_contact.email_address'),
47+
config('services.payment_contact.display_name')
4848
)
4949
);
5050
})

app/Mail/PaymentReceipt.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public function build(): self
4343
->withSymfonyMessage(static function (Email $email): void {
4444
$email->replyTo(
4545
new Address(
46-
config('payment_contact.email_address'),
47-
config('payment_contact.display_name')
46+
config('services.payment_contact.email_address'),
47+
config('services.payment_contact.display_name')
4848
)
4949
);
5050
})
@@ -54,8 +54,8 @@ public function build(): self
5454
if (in_array($this->payment->method, ['cash', 'check'], true)) {
5555
$mail->bcc(
5656
new Address(
57-
config('payment_contact.email_address'),
58-
config('payment_contact.display_name')
57+
config('services.payment_contact.email_address'),
58+
config('services.payment_contact.display_name')
5959
)
6060
);
6161
}

app/Mail/Travel/AllTravelAssignmentsComplete.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public function build(): self
3838
->withSymfonyMessage(static function (Email $email): void {
3939
$email->replyTo(
4040
new Address(
41-
config('payment_contact.email_address'),
42-
config('payment_contact.display_name')
41+
config('services.payment_contact.email_address'),
42+
config('services.payment_contact.display_name')
4343
)
4444
);
4545
})

0 commit comments

Comments
 (0)