public function SendinblueManager::getAccountEmail in SendinBlue 8.2
Same name and namespace in other branches
- 8 src/SendinblueManager.php \Drupal\sendinblue\SendinblueManager::getAccountEmail()
Get the account email store in configuration.
Return value
string The SiB account email
2 calls to SendinblueManager::getAccountEmail()
- SendinblueManager::generateHomeLogin in src/
SendinblueManager.php - Generate Home layout of Log out.
- SendinblueManager::sendEmail in src/
SendinblueManager.php - Send mail.
File
- src/
SendinblueManager.php, line 247
Class
- SendinblueManager
- Basic manager of module.
Namespace
Drupal\sendinblueCode
public function getAccountEmail() {
return $this->configFactory
->get(self::CONFIG_SETTINGS)
->get(self::ACCOUNT_EMAIL);
}