laravel-gmail
laravel-gmail copied to clipboard
Laravel wrapper for the Gmail API
See ~line 265 in GmailConnection.php for this method: ``` private function haveReadScope() { $scopes = $this->getUserScopes(); return in_array(Google_Service_Gmail::GMAIL_READONLY, $scopes); } ``` The "all" scope in the core config file translates...
Hello I want Filter Emails by date but it's not working ` $messages = \LaravelGmail::message()->subject('New customer message on September')->after('2020-09-20')->preload()->all(); ` Please Help and how I can get all message with...
Hello everyone, If i use only modify scope and create Token, I do not receive email of the user. But if i add readonly to the scope array, the email...
After authentication the error is showing object not found, may be typing error Please resolve
I am looking for a way to add replyTo attribute in my project.
fixed readme @dacastro4
Hi. Take into the consideration for future updates to include a custom option to set refreshToken trought env with fetchAccessTokenWithRefreshToken().
Starting this week this package stopped working all of a sudden, producing this error message. The complete error is: Dacastro4\LaravelGmail\Services\Message\Mail::__construct(): Argument #1 ($message) must be of type ?Google_Service_Gmail_Message, Google\Service\Exception given,...
I would like to forward a email trial is that achievable with the package?
` $mail = LaravelGmail::setUserId($mailbox->mailbox->uuid)->message()->get($threadId); $bodyContent = "Hi reply 1 from " . $your_email_id . ". Date :" . Carbon\Carbon::now(); $mail->using($accessToken); $to = $mail->getFromEmail(); $toName = $mail->getFromName(); $from = $mail->getTo(); $mail->message($bodyContent);...