我的代码如下:
require_once $DOCUMENT_ROOT.'/autoload.php';
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
...
if($token!='' && $email!='')
{
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'https://graph.microsoft.com/v1.0/me/sendmail', [
'headers' => [
'Authorization' => 'Bearer ' . $token,
'Content-Type' => 'application/json;odata.metadata=minimal;odata.streaming=true'
],
'body' => $email
]);
if($response.getStatusCode() === 201) {
exit('<h1>Email sent, check your inbox</h1>');
} else {
exit('<h2>There was an error sending the email.</h2> Status code: ' . $response.getStatusCode());
}
}
我一直收到错误调用未定义的函数getStatusCode()。 我知道我需要添加其他用途,但是我已经尝试了所有方法,但无法使它正常工作,每次都出现相同的错误。
答案 0 :(得分:0)
解决了。从Microsoft复制了代码,应该是:
if($response->getStatusCode() === 202)
成功也不是202而不是201