You are here

protected function AmazonSesTestForm::setMailManager in Amazon SES 2.0.x

Set the Mail Manager.

Parameters

\Drupal\Core\Mail\MailManagerInterface $mail_manager: The Mail Manger object.

Return value

$this

File

src/Form/AmazonSesTestForm.php, line 58

Class

AmazonSesTestForm
Amazon SES test form.

Namespace

Drupal\amazon_ses\Form

Code

protected function setMailManager(MailManagerInterface $mail_manager) {
  $this->mailManager = $mail_manager;
  return $this;
}