選択できるのは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. }