您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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