Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BulkMailerInterface.php 298B

1234567891011
  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. }