Skip to content
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

Closed
wants to merge 14 commits into from

Conversation

SanderMuller
Copy link
Contributor

Documentation for laravel/framework#54067

@DanielSpravtsev
Copy link

Would be great to see some use cases/examples for methods

@taylorotwell
Copy link
Member

taylorotwell commented Jan 15, 2025

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.

@taylorotwell taylorotwell marked this pull request as draft January 15, 2025 19:56
@shaedrich
Copy link
Contributor

shaedrich commented Jan 15, 2025

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:

docs/validation.md

Lines 1213 to 1224 in 8c527b5

The example above will apply the `RFCValidation` and `DNSCheckValidation` validations. Here's a full list of validation styles you can apply:
<div class="content-list" markdown="1">
- `rfc`: `RFCValidation`
- `strict`: `NoRFCWarningsValidation`
- `dns`: `DNSCheckValidation`
- `spoof`: `SpoofCheckValidation`
- `filter`: `FilterEmailValidation`
- `filter_unicode`: `FilterEmailValidation::unicode()`
</div>

@@ -1240,6 +1241,8 @@ The `filter` validator, which uses PHP's `filter_var` function, ships with Larav
> [!WARNING]
Copy link
Contributor

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could link this:

Suggested change
> 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).

@shaedrich
Copy link
Contributor

shaedrich commented Jan 15, 2025

Doesn't have #### Defining Default Email Rules an heading level too high? 🤔

@SanderMuller
Copy link
Contributor Author

Would be great to see some use cases/examples for methods

@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)`:**
Copy link
Contributor

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:

Suggested change
- **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
Copy link
Contributor

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 validation
Rule::email()->rfcCompliant();
Strict RFC validation
Rule::email()->rfcCompliant(true);

public function boot(): void
{
Email::defaults(function () {
$rule = (new Email())->rfcCompliant(strict: true)->preventSpoofing(),

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

@DanielSpravtsev
Copy link

Hey @SanderMuller, thanks for adding more detailed docs! I have a few points of feedback after reviewing the latest updates:

  1. Clarifying rfcCompliant(true) vs. rfcCompliant(false)

    • The examples show addresses that pass rfcCompliant() but fail rfcCompliant(true). Could you add just one example that explicitly passes or fails both, showing clearly what “less strict” does vs. “strict”? Right now, the bullet points are good, but a quick “this one fails them both” or “this one passes them both” might help clarify even further.
  2. Extra Emphasis on validateMxRecord()

    • The doc says “Requires valid MX record,” but some might not realize that DNS lookups can add latency or external calls—maybe add a small note or footnote like “(this relies on DNS lookups and could fail if domain DNS is temporarily down)”. Just an idea so folks understand potential trade-offs.
  3. withNativeValidation(true) vs. rfcCompliant(true)

    • You mention withNativeValidation(true) is less strict than RFC. Maybe add an explicit example showing something like "quoted [email protected]" or “[email protected]” that one method would allow or block. That’ll make it super clear to devs which to choose.

Other than that, everything looks good! Let me know what you think!

});
```

### Use Cases & Examples
Copy link
Contributor

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)

@SanderMuller
Copy link
Contributor Author

Hey @SanderMuller, thanks for adding more detailed docs! I have a few points of feedback after reviewing the latest updates:

  1. Clarifying rfcCompliant(true) vs. rfcCompliant(false)

    • The examples show addresses that pass rfcCompliant() but fail rfcCompliant(true). Could you add just one example that explicitly passes or fails both, showing clearly what “less strict” does vs. “strict”? Right now, the bullet points are good, but a quick “this one fails them both” or “this one passes them both” might help clarify even further.
  2. Extra Emphasis on validateMxRecord()

    • The doc says “Requires valid MX record,” but some might not realize that DNS lookups can add latency or external calls—maybe add a small note or footnote like “(this relies on DNS lookups and could fail if domain DNS is temporarily down)”. Just an idea so folks understand potential trade-offs.
  3. withNativeValidation(true) vs. rfcCompliant(true)

    • You mention withNativeValidation(true) is less strict than RFC. Maybe add an explicit example showing something like "quoted [email protected]" or “[email protected]” that one method would allow or block. That’ll make it super clear to devs which to choose.

Other than that, everything looks good! Let me know what you think!

Thanks, I've been working on your feedback/suggestions, can you have a new look?

@shaedrich
Copy link
Contributor

Hey @SanderMuller, thanks for adding more detailed docs! I have a few points of feedback after reviewing the latest updates:

  1. Clarifying rfcCompliant(true) vs. rfcCompliant(false)

    • The examples show addresses that pass rfcCompliant() but fail rfcCompliant(true). Could you add just one example that explicitly passes or fails both, showing clearly what “less strict” does vs. “strict”? Right now, the bullet points are good, but a quick “this one fails them both” or “this one passes them both” might help clarify even further.
  2. Extra Emphasis on validateMxRecord()

    • The doc says “Requires valid MX record,” but some might not realize that DNS lookups can add latency or external calls—maybe add a small note or footnote like “(this relies on DNS lookups and could fail if domain DNS is temporarily down)”. Just an idea so folks understand potential trade-offs.
  3. withNativeValidation(true) vs. rfcCompliant(true)

    • You mention withNativeValidation(true) is less strict than RFC. Maybe add an explicit example showing something like "quoted [email protected]" or “[email protected]” that one method would allow or block. That’ll make it super clear to devs which to choose.

Other than that, everything looks good! Let me know what you think!

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 р) | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |

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

Copy link
Contributor Author

@SanderMuller SanderMuller Jan 17, 2025

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` | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ |

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?

Copy link
Contributor Author

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

Copy link
Contributor

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.

@DanielSpravtsev
Copy link

Hey @SanderMuller, thanks for adding more detailed docs! I have a few points of feedback after reviewing the latest updates:

  1. Clarifying rfcCompliant(true) vs. rfcCompliant(false)

    • The examples show addresses that pass rfcCompliant() but fail rfcCompliant(true). Could you add just one example that explicitly passes or fails both, showing clearly what “less strict” does vs. “strict”? Right now, the bullet points are good, but a quick “this one fails them both” or “this one passes them both” might help clarify even further.
  2. Extra Emphasis on validateMxRecord()

    • The doc says “Requires valid MX record,” but some might not realize that DNS lookups can add latency or external calls—maybe add a small note or footnote like “(this relies on DNS lookups and could fail if domain DNS is temporarily down)”. Just an idea so folks understand potential trade-offs.
  3. withNativeValidation(true) vs. rfcCompliant(true)

    • You mention withNativeValidation(true) is less strict than RFC. Maybe add an explicit example showing something like "quoted [email protected]" or “[email protected]” that one method would allow or block. That’ll make it super clear to devs which to choose.

Other than that, everything looks good! Let me know what you think!

Thanks, I've been working on your feedback/suggestions, can you have a new look?

Great improvements, thanks for the updates! I’ve left a couple of comments in the review for clarification.

@SanderMuller SanderMuller marked this pull request as ready for review January 17, 2025 10:49
@SanderMuller
Copy link
Contributor Author

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!

@SanderMuller SanderMuller changed the title Document the fluent email Rule validation [11.x] Document the fluent email Rule validation Jan 17, 2025
@taylorotwell
Copy link
Member

I got this documented. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants