我使用ews-php库发送电子邮件(Exchange 2013)并尝试设置自定义发件人的名称。
我使用官方api中的代码:http://jamesarmes.com/php-ews/doc/0.1/examples/email-send.html
$fromAddress = new EWSType_EmailAddressType();
$fromAddress->EmailAddress = 'email@server.de';
$fromAddress->Name = 'From Name';
$msg->From = new EWSType_SingleRecipientType();
$msg->From->Mailbox = $fromAddress;
所以它应该看起来像"From Name <email@server.de>"
。取而代之的是"Email <email@server.de>"
任何想法出了什么问题?