Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

29 lines
995B

  1. <?php
  2. namespace common\components\BulkMailer;
  3. use domain\Setting\AdminSettingBag;
  4. use yii\base\ErrorException;
  5. class BulkMailerProxy implements BulkMailerInterface
  6. {
  7. public function getBulkMailer(): BulkMailerInterface
  8. {
  9. $bulkMailerSetting = AdminSettingBag::getInstance()->get('bulkMailer');
  10. if($bulkMailerSetting == BulkMailerInterface::MAILJET) {
  11. return new BulkMailerMailjet();
  12. }
  13. elseif($bulkMailerSetting == BulkMailerInterface::BREVO) {
  14. return new BulkMailerBrevo();
  15. }
  16. else {
  17. throw new ErrorException("Le mailer pour les emails en masse n'est pas défini dans les paramètres admin.");
  18. }
  19. }
  20. public function sendEmails(array $contactsArray, string $fromName, string $fromEmail, string $subject, string $htmlContent, string $textContent = null)
  21. {
  22. $this->getBulkMailer()->sendEmails($contactsArray, $fromName, $fromEmail, $subject, $htmlContent, $textContent);
  23. }
  24. }