Skip to content

Add get label to has labels #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion src/Services/Message/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ class Mail extends GmailConnection

public $parts;

/**
* @var
*/
public $snippet;

/**
* @var Google_Service_Gmail
*/
Expand Down Expand Up @@ -130,6 +135,7 @@ protected function setMessage(\Google_Service_Gmail_Message $message)
$this->threadId = $message->getThreadId();
$this->historyId = $message->getHistoryId();
$this->payload = $message->getPayload();
$this->snippet = $message->getSnippet();
if ($this->payload) {
$this->parts = collect($this->payload->getParts());
}
Expand Down Expand Up @@ -231,6 +237,18 @@ public function getReplyTo()
return $this->getFrom($replyTo ? $replyTo : $this->getHeader('From'));
}

/**
* Returns the Snippet from the email
*
* @return string
*/
public function getSnippet()
{


return $this->snippet;
}

/**
* Returns array of name and email of each recipient
*
Expand Down Expand Up @@ -407,7 +425,6 @@ public function getPlainTextBody($raw = false)
public function getBody($type = 'text/plain')
{
$parts = $this->getAllParts($this->parts);

try {
if (!$parts->isEmpty()) {
foreach ($parts as $part) {
Expand Down
14 changes: 14 additions & 0 deletions src/Traits/HasLabels.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,18 @@ public function firstOrCreateLabel($userEmail, $newLabel)

return $service->users_labels->create($userEmail, $newLabel);
}

/**
* List the labels in the user's mailbox.
*
* @param $userEmail
*
* @return \Google\Service\Gmail\Label
*/
public function getLabel($userEmail, $id)
{
$service = new Google_Service_Gmail($this);

return $service->users_labels->get($userEmail, $id);
}
}