You are here

public function MailEntity::getNewsletter in Simplenews 8.2

Same name and namespace in other branches
  1. 8 src/Mail/MailEntity.php \Drupal\simplenews\Mail\MailEntity::getNewsletter()
  2. 3.x src/Mail/MailEntity.php \Drupal\simplenews\Mail\MailEntity::getNewsletter()

Returns the corresponding newsletter.

Return value

\Drupal\simplenews\NewsletterInterface The newsletter.

2 calls to MailEntity::getNewsletter()
MailEntity::buildBody in src/Mail/MailEntity.php
Build the themed newsletter body.
MailEntity::getTokenContext in src/Mail/MailEntity.php
Returns the token context to be used with token replacements.

File

src/Mail/MailEntity.php, line 80

Class

MailEntity
Default mail class for entities.

Namespace

Drupal\simplenews\Mail

Code

public function getNewsletter() {
  return $this->newsletter;
}