SparkPostTransport::send()

send(Swift_Mime_Message $message, $failedRecipients = null) {@inheritdoc} Parameters Swift_Mime_Message $message $failedRecipients

SparkPostTransport::registerPlugin()

void registerPlugin(Swift_Events_EventListener $plugin) Register a plug-in with the transport. Parameters Swift_Events_EventListener $plugin Return Value void

SparkPostTransport::isStarted()

isStarted() {@inheritdoc}

SparkPostTransport::getKey()

string getKey() Get the API key being used by the transport. Return Value string

SparkPostTransport

SparkPostTransport class SparkPostTransport extends Transport (View source) Properties array $plugins The plug-ins registered with the transport. from Transport

SortedMiddleware::__toString()

string __toString() Convert the collection to its string representation. Return Value string

SortedMiddleware::__construct()

void __construct(array $priorityMap, array $middlewares) Create a new Sorted Middleware container. Parameters array $priorityMap array $middlewares Return Value void

SortedMiddleware::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

SortedMiddleware::__call()

mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

SortedMiddleware::zip()

Collection zip(mixed $items) Zip the collection together with one or more arrays. e.g. new Collection([1, 2, 3])->zip([4, 5, 6]); => [[1, 4], [2, 5], [3, 6]] Parameters mixed $items Return Value Collection