public function SendinblueManager::getAccountUsername in SendinBlue 8.2
Same name and namespace in other branches
- 8 src/SendinblueManager.php \Drupal\sendinblue\SendinblueManager::getAccountUsername()
Get the account username store in configuration.
Return value
string The SiB account username
2 calls to SendinblueManager::getAccountUsername()
- 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 257
Class
- SendinblueManager
- Basic manager of module.
Namespace
Drupal\sendinblueCode
public function getAccountUsername() {
return $this->configFactory
->get(self::CONFIG_SETTINGS)
->get(self::ACCOUNT_USERNAME);
}