我正在使用PHP-EWS(GarethP),尝试像这样setReplyTo
:
use garethp\ews\API\Type;
use garethp\ews\MailAPI;
$api = MailAPI::withUsernameAndPassword("host", "username", "password");
$message = new Type\MessageType();
$message->setSubject("Some Subject");
$message->setBody("Test Email");
$message->setToRecipients("test@test.com");
$message->setReplyTo("me@there.com"); // <-- this is the 'ReplyTo' address I want to set.
$api->sendMail($message);
但这没有任何影响,收件人随后将回复发件人/发件人地址。
Api回调显示:
'replyTo' => NULL,
关于如何解决的任何想法?
答案 0 :(得分:0)
啊,我知道了。 对于遇到类似问题的其他人,这就是我的发现。
在MessageType.php
文件中,缺少addReplyTo
和setReplyTo
函数。
以与setToRecipients
,setCcRecipients
和setBccRecipients
函数相同的方式添加它们可以解决问题:
public function addReplyTo($recipient)
{
return parent::addReplyTo(ensureIsMailbox($recipient));
}
public function setReplyTo($recipients)
{
$this->replyTo = [ ];
$recipients = ensureIsArray($recipients);
foreach ($recipients as $recipient) {
$this->addReplyTo($recipient);
}
return $this;
}