Below error coming in sendgrid driver. this is used to work ... suddenly not started to work
exception: "GuzzleHttp\Exception\RequestException"
file: "C:\inetpub\wwwroot\qhse\QHSE_Backend\vendor\guzzlehttp\guzzle\src\Handler\CurlFactory.php"
line: 186
message: "cURL error 18: transfer closed with 116 bytes remaining to read (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)"
This is the code I'm using to send:
return $this
->view('email.action')
->subject('demo')
->from('noreply@admin-int.com')
->sendgrid([
'personalizations' => [
[
'substitutions' => [
':myname' => 's-ichikawa',
],
],
],
])
->with(['arr' => $this->data]);