作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
语境
在 Symfony 4.3 中引入了一个新的电子邮件程序。
看这里:
MAILER_DSN=smtp://user:pass@smtp.example.com
username: alice@example.com
password: the:password:is:difficult
MAILER_DSN=smtp://alice@example.com:the:password:is:difficult@smtp.example.com
最佳答案
您可以对值进行 urlencode。
Mailer 组件 ( Tests/Transport/DsnTest.php ) 中有一个测试表明它应该使用编码值。
因此,您可以使用在线编码器来转换您的值(例如 https://www.urlencoder.org/ )
你的字符串:
MAILER_DSN=smtp://alice@example.com:the:password:is:difficult@smtp.example.com
MAILER_DSN=smtp://alice%40example.com:the%3Apassword%3Ais%3Adifficult@smtp.example.com
关于smtp - 如何在 SMTP 传输中处理 Symfony Mailer 组件凭据中的特殊字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59214795/
我是一名优秀的程序员,十分优秀!