gpt4 book ai didi

php - Symfony 中 RFC 2822、3.6.2 的电子邮件合规性和验证

转载 作者:行者123 更新时间:2023-12-02 03:03:02 25 4
gpt4 key购买 nike

我在通过 Symfony Email Constraint 验证用户电子邮件地址时遇到问题然后尝试通过 Swiftmailer 向该用户发送邮件.

假设我的用户正在 name@@gmail.com 注册(双 @ 是示例中的故意拼写错误)。 Symfony 中的电子邮件约束验证已成功验证这一点,并且在我的数据库中创建了该用户。

但是当我尝试使用 Swiftmailer 发送邮件时,收到 500 错误

Address in mailbox given [name@@gmail.com] does not comply with RFC 2822, 3.6.2.

来自 Swiftmailer 本身。

最佳答案

您可以启用strict mode in Symfony's EmailValidator ,例如像这样:

class Author
{
/**
* @Assert\Email(
* message = "The email '{{ value }}' is not a valid email.",
* mode = "strict"
* )
*/
protected $email;
}

正如文档所说:

Uses the egulias/email-validator library to perform an RFC compliant validation. You will need to install that library to use this mode.

egulias/email-validator SwiftMailer 也使用(请参阅 Swiftmailer 的 composer.jsonPathHeader ),因此这应该会给您类似的验证结果。

关于php - Symfony 中 RFC 2822、3.6.2 的电子邮件合规性和验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59665056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com