Skip to content

Commit 9c7dfad

Browse files
Update Postmark API token variable name in mail configuration (#10914)
* Update Postmark API token variable name in mail configuration This doesn't match actual `services.php` there it's referenced as 'POSTMARK_TOKEN' not 'POSTMARK_API_TOKEN' ``` 'postmark' => [ 'token' => env('POSTMARK_TOKEN'), ], ``` * Update Postmark API key environment variable --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
1 parent 45a2332 commit 9c7dfad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Next, set the `default` option in your application's `config/mail.php` configura
111111

112112
```php
113113
'postmark' => [
114-
'key' => env('POSTMARK_API_TOKEN'),
114+
'key' => env('POSTMARK_API_KEY'),
115115
],
116116
```
117117

0 commit comments

Comments
 (0)