-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[11.x] Document the fluent email Rule validation #10112
Conversation
Would be great to see some use cases/examples for methods |
Yeah, explanation of what "strict" compliance means, or what spoofing means would be great! Please mark as ready for review when the requested changes have been made. |
A good place might be here, where it's already mentioned: Lines 1213 to 1224 in 8c527b5
|
@@ -1240,6 +1241,8 @@ The `filter` validator, which uses PHP's `filter_var` function, ships with Larav | |||
> [!WARNING] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to link this:
- The `filter` validator, which uses PHP's `filter_var` function, ships with Laravel and was Laravel's default email validation behavior prior to Laravel version 5.8.
+ The `filter` validator, which uses PHP's [`filter_var` function](https://www.php.net/manual/en/filter.constants.php#constant.filter-validate-email), ships with Laravel and was Laravel's default email validation behavior prior to Laravel version 5.8.
[!WARNING]
@@ -1240,6 +1241,8 @@ The `filter` validator, which uses PHP's `filter_var` function, ships with Larav | |||
> [!WARNING] | |||
> The `dns` and `spoof` validators require the PHP `intl` extension. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could link this:
> The `dns` and `spoof` validators require the PHP `intl` extension. | |
> The `dns` and `spoof` validators require the [PHP `intl` extension](https://www.php.net/manual/de/book.intl.php). |
Doesn't have |
@DanielSpravtsev I've been working on some improvements, could you have a look? |
validation.md
Outdated
Rule::email()->rfcCompliant(true); | ||
``` | ||
|
||
- **Addresses that pass `rfcCompliant()` but fail `rfcCompliant(true)`:** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might have added the -
accidentally here:
- **Addresses that pass `rfcCompliant()` but fail `rfcCompliant(true)`:** | |
**Addresses that pass `rfcCompliant()` but fail `rfcCompliant(true)`:** |
@@ -2324,99 +2323,102 @@ Email::defaults(function () { | |||
|
|||
### Use Cases & Examples |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might alternatively be a table:
Method | Description | Use case | example |
---|---|---|---|
rfcCompliant(strict: bool) |
Validates the email according to RFC 5322. Passing true enforces stricter RFC checks (e.g., rejects [email protected] ). |
Use rfcCompliant() if you need standard RFC validation while allowing some unusual formats.Use rfcCompliant(true) if you want to reject less typical but technically valid addresses. |
Basic RFC validationRule::email()->rfcCompliant(); Strict RFC validation Rule::email()->rfcCompliant(true); |
…
public function boot(): void | ||
{ | ||
Email::defaults(function () { | ||
$rule = (new Email())->rfcCompliant(strict: true)->preventSpoofing(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be ;
instead of ,
at the end
Hey @SanderMuller, thanks for adding more detailed docs! I have a few points of feedback after reviewing the latest updates:
Other than that, everything looks good! Let me know what you think! |
}); | ||
``` | ||
|
||
### Use Cases & Examples |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to add a link up there, where the string rule is explained:
#10112 (comment)
Thanks, I've been working on your feedback/suggestions, can you have a new look? |
Wow, I have to say: Congrats! The table is massively informative 👍🏻 |
| `[email protected]` | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | ||
| `té[email protected]` | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | | ||
| `user@üñîçødé.com` | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | | ||
| `admin@examрle.com` <br>(Cyrillic р) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be helpful to clarify why admin@examрle.com (with Cyrillic р) passes rfcCompliant(strict: true) but fails preventSpoofing(). Since it’s a potentially deceptive address
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because it's a valid email address, just deceptive so potentially unwanted. So the RFC has nothing to do with how. I am not sure how to add these kind of details without making the docs for email validation a book on itself 😄
| `test@localhost` <br>(no TLD) | ✅ | ❌ | ❌ | ❌ | ❌ | ✅ | | ||
| `[email protected]` | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | ||
| `té[email protected]` | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | | ||
| `user@üñîçødé.com` | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly, user@üñîçødé.com is marked as failing withNativeValidation(allowUnicode: true), which seems counterintuitive—shouldn't it pass if Unicode is explicitly allowed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly, user@üñîçødé.com is marked as failing withNativeValidation(allowUnicode: true), which seems counterintuitive—shouldn't it pass if Unicode is explicitly allowed?
I would've expected it to, but it doesn't. These docs don't determine the behavior but describe it. The table shows why IMO rfcCompliant(strict: true)
is a much better choice than withNativeValidation(allowUnicode: true)
and I think withNativeValidation
all together shouldn't be used, but thats an opinion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think
withNativeValidation
all together shouldn't be used, but thats an opinion
There's probably a reason, why this isn't the default anymore.
Great improvements, thanks for the updates! I’ve left a couple of comments in the review for clarification. |
Hi @taylorotwell, The details for this PR have really been sweated. Testing the differences between email validation methods and building the matrix required significant testing effort in the framework test suite. These additions have been contributed via laravel/framework#54226. Let me know if there’s anything else you’d like adjusted or clarified! |
I got this documented. Thanks. |
Documentation for laravel/framework#54067