You are here

public function SendinblueManager::getSmtpDetails in SendinBlue 8

Same name and namespace in other branches
  1. 8.2 src/SendinblueManager.php \Drupal\sendinblue\SendinblueManager::getSmtpDetails()

Get the data account store in configuration.

Return value

string The SiB account store

File

src/SendinblueManager.php, line 277

Class

SendinblueManager
Basic manager of module.

Namespace

Drupal\sendinblue

Code

public function getSmtpDetails() {
  return $this->configFactory
    ->get(self::CONFIG_SETTINGS_SEND_EMAIL)
    ->get(self::SMTP_DETAILS);
}