diff --git a/src/Illuminate/Mail/Transport/SparkPostTransport.php b/src/Illuminate/Mail/Transport/SparkPostTransport.php index 83de3da6129b..8640feae0009 100644 --- a/src/Illuminate/Mail/Transport/SparkPostTransport.php +++ b/src/Illuminate/Mail/Transport/SparkPostTransport.php @@ -126,4 +126,25 @@ public function setKey($key) { return $this->key = $key; } + + /** + * Get the transmission options being used by the transport. + * + * @return string + */ + public function getOptions() + { + return $this->options; + } + + /** + * Set the transmission options being used by the transport. + * + * @param array $options + * @return array + */ + public function setOptions($options) + { + return $this->options = $options; + } }