You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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