Skip to content
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

adding snippet attribute to mail #250

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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