You are here

interface EmailAttachmentEvaluatorInterface in Easy Email 2.0.x

Same name and namespace in other branches
  1. 8 src/Service/EmailAttachmentEvaluatorInterface.php \Drupal\easy_email\Service\EmailAttachmentEvaluatorInterface

Hierarchy

Expanded class hierarchy of EmailAttachmentEvaluatorInterface

All classes that implement EmailAttachmentEvaluatorInterface

File

src/Service/EmailAttachmentEvaluatorInterface.php, line 7

Namespace

Drupal\easy_email\Service
View source
interface EmailAttachmentEvaluatorInterface {

  /**
   * Evaluate the attachments in entity email fields.
   *
   * @param \Drupal\easy_email\Entity\EasyEmailInterface $email
   *   The email entity
   * @param string|bool $save_attachment_to
   *   URI of the destination directory to save the dynamic file attachments,
   *   FALSE to bypass saving dynamic attachments.
   *
   */
  public function evaluateAttachments(EasyEmailInterface $email, $save_attachment_to = FALSE);

}

Members

Namesort descending Modifiers Type Description Overrides
EmailAttachmentEvaluatorInterface::evaluateAttachments public function Evaluate the attachments in entity email fields. 1