You are here

public function UserEmailVerification::getExtendedMailSubject in User email verification 8

Return extended verification mail subject.

Return value

string Extended verification mail subject.

Overrides UserEmailVerificationInterface::getExtendedMailSubject

1 call to UserEmailVerification::getExtendedMailSubject()
UserEmailVerification::initEmailMessage in src/UserEmailVerification.php
Fill email message with data. A hook_mail() handler.

File

src/UserEmailVerification.php, line 192

Class

UserEmailVerification
User email verification helper service.

Namespace

Drupal\user_email_verification

Code

public function getExtendedMailSubject() {
  return trim((string) $this->config
    ->get('extended_mail_subject'));
}