You are here

public function SendDefaultForm::getQuestion in Mail Safety 8

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

src/Form/SendDefaultForm.php, line 34

Class

SendDefaultForm
Class SendDefaultForm.

Namespace

Drupal\mail_safety\Form

Code

public function getQuestion() {
  $config = \Drupal::config('mail_safety.settings');
  return $this
    ->t('Are you sure you want to send "@subject" to @to', [
    '@subject' => $this->mailSafety['mail']['subject'],
    '@to' => $config
      ->get('default_mail_address'),
  ]);
}