diff --git a/src/Exceptions/InvalidConfig.php b/src/Exceptions/InvalidConfig.php index 53f8c2f8..b1f57836 100644 --- a/src/Exceptions/InvalidConfig.php +++ b/src/Exceptions/InvalidConfig.php @@ -13,7 +13,7 @@ public static function invalidEmail(string $email): static public static function missingSender(): static { - return new static('No sender email address specified.'); + return new static("No sender email address specified. Make sure it's set in your config file or as `MAIL_FROM_ADDRESS` in your .env file."); } public static function integerMustBePositive(string $name): static