第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

OTRS:通過(guò) Web 服務(wù)創(chuàng)建外發(fā)電子郵件票

OTRS:通過(guò) Web 服務(wù)創(chuàng)建外發(fā)電子郵件票

PHP
慕田峪7331174 2022-12-11 10:13:24
我正在嘗試通過(guò) PHP 和來(lái)自 OTRS 的 REST 通用接口創(chuàng)建票證(https://doc.otrs.com/doc/manual/admin/6.0/en/html/genericinterface.html#id-1.6.12.10.7.2) .我可以創(chuàng)建工單和文章。但 OTRS 歷史記錄看起來(lái)不像是外發(fā)電子郵件,而是用戶正在向隊(duì)列發(fā)送票證。而且也沒(méi)有郵件發(fā)送給客戶:-(。但是我喜歡有一個(gè)外發(fā)的電子郵件票證和票證的待處理狀態(tài)。這是我的 PHP 代碼<?phpheader("Content-type: application/json; charset=utf-8");require __DIR__ . '/vendor/autoload.php';use GuzzleHttp\Client;$client = new Client(['base_uri' => 'http://test-otrs.company.local/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/']);$arrTicket = array(    "Title"        => 'some ticket title',    "Queue"        => 'testqueue',    "Lock"         => 'unlock',    "Type"         => 'Unclassified',    "State"        => 'new',    "Priority"     => '3 normal',    "Owner"        => 'username',    "CustomerUser" => 'user@test.com');$arrArticle = array(    "CommunicationChannel"  => 'Email',    "SenderType"            => 'agent',    "To"                    => 'user@test.com',    "Subject"               => 'some subject',    "Body"                  => 'some body',    "ContentType"           => 'text/plain; charset=utf8');$response = $client->post('Ticket', ['json' => array("UserLogin" => "username", "Password" => "testtesttest", "Ticket" => $arrTicket, "Article" => $arrArticle)]);if ($response->getBody())    {    echo $response->getBody();    }
查看完整描述

1 回答

?
MYYA

TA貢獻(xiàn)1868條經(jīng)驗(yàn) 獲得超4個(gè)贊

https://forums.otterhub.org/viewtopic.php?p=168025#p168025解決了我的問(wèn)題。您需要一個(gè)額外的插件 ( https://github.com/znuny/Znuny4OTRS-GIArticleSend ) 才能發(fā)送傳出的電子郵件票證。



查看完整回答
反對(duì) 回復(fù) 2022-12-11
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)