PHP-EWS(GarethP)setReplyTo

时间:2019-07-18 07:48:22

标签: php php-ews

我正在使用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,

关于如何解决的任何想法?

1 个答案:

答案 0 :(得分:0)

啊,我知道了。 对于遇到类似问题的其他人,这就是我的发现。

MessageType.php文件中,缺少addReplyTosetReplyTo函数。

以与setToRecipientssetCcRecipientssetBccRecipients函数相同的方式添加它们可以解决问题:

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;
    }