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ů.

12 lines
298B

  1. <?php
  2. namespace common\components\BulkMailer;
  3. interface BulkMailerInterface
  4. {
  5. const MAILJET = 'mailjet';
  6. const BREVO = 'brevo';
  7. public function sendEmails(array $contactsArray, string $fromName, string $fromEmail, string $subject, string $htmlContent, string $textContent = null);
  8. }