laravel-gmail
laravel-gmail copied to clipboard
Laravel wrapper for the Gmail API
Vulnerable Library - bootstrap-3.3.7.min.js The most popular front-end framework for developing responsive, mobile first projects on the web. Library home page: https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js Path to vulnerable library: /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/bootstrap.min.js ## Vulnerabilities |...
i set userid for multiuser login $agence_id = request()->session()->get('userdata')->agence_id; LaravelGmail::setUserId($agence_id)->makeToken(); but how i check user it's login or not in dashboard
When I login with my mail credentials again redirect mail credentials view and in storage/app/gmail/token/gmail-json.json nothing create a token and credentials in my project can you help me out this...
From header doesn't change when it is set using `from` method: ``` $mail = new Mail; $mail->using('token.json'); $mail->from($senderEmail, $senderName); $mail->to($userEmail, $userName); ``` I also tried to use `setHeader`, but it...
$mailbox = new LaravelGmailClass(config(), $admin_uid); $messages = $mailbox->message()->preload()->all(); this not working ... any ideas?
At this time the flow is , if any user wants access an email, Gmail will ask for grant their email access, I want admin to grant access to email...
Hi, has anybody experienced having issues sending to yahoo provided emails (e.g. @verizon.net)? After integrating to laravel-gmail, our emails are being rejected but switching back to using SendInBlue, the same...
It seems I can't save message attachments to disk. I am using `GOOGLE_ALLOW_MULTIPLE_CREDENTIALS=true` and I'm able to retrieve messages for a given account, but not the attachments. Not sure if...
I'm sending a scheduled email by a cronjob in the background so I take the callback `$callback = LaravelGmail::makeToken();` and save it and use it when the email schedule comes,...
I'm having a fight with attachments. I'm sure I'm doing something wrong. I'm trying to get all attachments of all mails. If I do this: `$messages = LaravelGmail::message()->preload()->all();' And then...