from
我不知道这是一个错误还是只是我的理解失败,但在以下两个代码示例中,cfmail 中的属性格式似乎有所不同:
示例 1
<cfmail to="customer@example.org"
from="support@supplier.com (Customer Services)"
subject="Order confirmation"
type="html">
customer services <support@supplier.com>
使用上述代码发送邮件时,发件人姓名以小写形式显示。
示例 2
<cfmail to="customer@example.org"
from="Customer Services <support@supplier.com>"
subject="Order confirmation"
type="html">
Customer Services <support@supplier.com>
使用上述代码发送邮件时,发件人姓名正确显示:
为什么它们的格式不同?我是否需要启用任何其他设置来阻止第一个代码示例将所有内容小写?