Zend certified PHP/Magento developer

Magento 2 – Save newsletter subscriber’s email address in a session

How can we save a subscriber’s email address in a session on Magento 2?

In Magento 1, we were able to access that email through the following:

$email = Mage::getSingleton(‘core/session’)->getInputEmail();
$emailOutput = $this->__($email);