You are here

MandrillServiceInterface.php in Mandrill 8

Namespace

Drupal\mandrill

File

src/MandrillServiceInterface.php
View source
<?php

namespace Drupal\mandrill;


/**
 * Interface for the Mandrill service.
 */
interface MandrillServiceInterface {
  public function getMailSystems();
  public function getReceivers($receiver);
  public function send($message);

}

Interfaces

Namesort descending Description
MandrillServiceInterface Interface for the Mandrill service.