laravel-sendgrid-driver
laravel-sendgrid-driver copied to clipboard
This library can add sendgrid driver into the laravel's mail configure.
Problem 1 - s-ichikawa/laravel-sendgrid-driver[4.0.0, ..., 4.0.1] require illuminate/mail ^9.0 -> found illuminate/mail[v9.0.0-beta.1, ..., 9.x-dev] but it conflicts with another require. - Root composer.json requires s-ichikawa/laravel-sendgrid-driver ^4.0 -> satisfiable by s-ichikawa/laravel-sendgrid-driver[4.0.0,...
## WHAT Added X-Sendgird-Message-ID to the header of the email. ## WHY This was in the previous version for laravel 8. It also provides a way to match emails from...
Hello, I add sendgrid support with https://github.com/s-ichikawa/laravel-sendgrid-driver in my laravel 8 but I have problems with adding custom perameters. I do in control : ``` public function banUser(Request $request) {...
Hi, I am passing the "p_user_id" as follows but "**p_user_id**" is not received at the SendGrid end. (Integrated into the Mailable as per - https://github.com/s-ichikawa/laravel-sendgrid-driver#use-in-mailable) snippet - $this->view('test') ->subject('test') ->from('[email protected]')...
From time to time, I get this error when trying to send email: cURL error 56: OpenSSL SSL_read: error:140943FC:SSL routines:ssl3_read_bytes:sslv3 alert bad record mac, errno 0 (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) (laravel 7,...
Hello, How can I set multiple addresses in the `to` field? I've tried: ```php $config = [ 'personalizations' => [ [ 'to' => [ [ 'email' => '[email protected]', 'name' =>...
### What version of PHP and Laravel are you using? PHP 8.0 Laravel 9.* ### What did you do? send email using $message->embedData ### What did you expect to see?...
### What version of PHP and Laravel are you using? ```shell PHP 8.1.13 Laravel Framework 9.47.0 ``` ### What did you do? Starting Laravel version 7, we can change the...
## WHAT Twilio bought sendgrid and the documentation link has changed
## WHAT Propose using `setMessageId()` instead of headers for `X-Message-Id` ## WHY ```php Event::listen(function (MessageSent $event) { // when sendgrid ID set with headers $sendgridId = $event->message->getHeaders()->getHeaderBody('x-sendgrid-message-id'); // when sendgrid...